{"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."}},"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."}},"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."}},"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."}},"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":"Current credit balance for the authenticated API user."}},"required":["balance"],"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},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":1,"description":"Optional region (country code) for the request."},"required":false,"description":"Optional region (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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":1,"description":"Two-letter region code for the request."},"required":true,"description":"Two-letter region 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":1,"description":"Optional region (country code) for the request."},"required":false,"description":"Optional region (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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":2,"maxLength":2,"description":"Optional two-letter region code for localized search results."},"required":false,"description":"Optional two-letter region 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":1,"description":"Optional region (country code) for the request. This sets the proxy region and does not filter results to that country only."},"required":false,"description":"Optional region (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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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","minLength":1,"description":"Optional two-letter region (country code) used to route the request when needed."},"required":false,"description":"Optional two-letter region (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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_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_Af4hAHNHRSCJl0pucin65D2b8fLD_fj5jGEzCpg7CqHJ6A&oe=6A0F26AC","width":640,"height":429},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_s480x480_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_Af7pzFP47NOwnG1QqA_R-jq7S3dKAkfsIJpZs2giIz9Rfg&oe=6A0F26AC","width":480,"height":322},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_s320x320_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_Af7Mj2Q_GiJROVZKzqVkjuwf-i3DVs1smDBLFyJLq07N7A&oe=6A0F26AC","width":320,"height":215},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_s240x240_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_Af6vBx7yBQaYZPpv0zTjPhZIqRfI-ZS5x8IofgR7SOKxnA&oe=6A0F26AC","width":240,"height":161},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s723x724_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_Af64JtkxV4U0ZWLIZPwaZQbc5JIoQJQYQGHjgmc1pVarfg&oe=6A0F26AC","width":724,"height":724},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s723x724_sh2.08_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_Af7Ca_G7WdkoaEFA13LCSXUkIEq4ZHWnCGjRf2P2px-DNg&oe=6A0F26AC","width":724,"height":724},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s640x640_sh2.08_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_Af7on0z6xzGctc_mEvi7CudRnc7d2cCo40CE2eG3hFczsQ&oe=6A0F26AC","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s480x480_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_Af79Wpe1wnwyu81_JEcOTC8HRpKG6HYg1hZBhuToV88PgA&oe=6A0F26AC","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s320x320_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_Af7Gwfl1nYfjgRZNWRNOR0rD-OZulcfcWCrEn7c4Flu5dw&oe=6A0F26AC","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s240x240_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_Af6KxUKUG882he8Wg5ccCGFZ8b1bwIxNYWZmm7xdz5mhJw&oe=6A0F26AC","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=c178.0.724.724a_dst-jpg_e35_s150x150_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_Af4urhHjur4RqdaQq1AGDn_03E12Yv8BTmAmzBsvUDCc1g&oe=6A0F26AC","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898716241430920161_63069450921","shortcode":"DYbBcPqiTvh","url":"https://www.threads.com/@trendspider/post/DYbBcPqiTvh","caption":"If war headlines crushed LMT, what does the unwind do?","takenAt":1778983220,"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":15,"replies":5,"reposts":0,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7DNVX2KZiFNfKIcq3x102G8Ok_9Im3oXaGVDn35Di_WA&oe=6A0F4F70","width":1079,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7BtFKzCnHUzjdIYEEdqAOuHf3rzwe7UHDbDYAWb97WHQ&oe=6A0F4F70","width":720,"height":538},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4mngkiBrMj1ZpIASBlbx_Pbow_OTVzmpZAtg-kCuSf_g&oe=6A0F4F70","width":640,"height":479},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4MmLylOaQpFogfFNKSV-Se-wRZgiROjYm6qGByiYWsxQ&oe=6A0F4F70","width":480,"height":359},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4LCDaeIqn4P0fHnkWDnQBf86cPydvOwJ1frkuKyWjcdg&oe=6A0F4F70","width":320,"height":239},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5zCrVOd3a4Yso0r9alPslMBsXRdC-KpVynjStuoH2XzQ&oe=6A0F4F70","width":240,"height":179},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4yw4rr69E1ACV8Jw6XlStC_TuNxSTFbN9IEqLngt0mUg&oe=6A0F4F70","width":807,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6cRz_lFiYMr5Y-lAEWKQ8mcJhFO-LOoldziRoDltoR7A&oe=6A0F4F70","width":750,"height":750},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7GvDnTFdwKUnC--kNE2QHzZhQbYvgwK9x_JA60eAXMPQ&oe=6A0F4F70","width":640,"height":640},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6EB3vqgzlkHrnsufv4endM2uPuvN2Z7KbLy-KV0BYiyA&oe=6A0F4F70","width":480,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af70WpvBZj_cDCcqNwUCkUbTbZn-TaGlVDSJCHF-NwsZZA&oe=6A0F4F70","width":320,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5vVYCRP7fpJaq9BxEYFfkOzdELR8ldl46UfdfJhhFg9Q&oe=6A0F4F70","width":240,"height":240},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/675498095_17966851800098922_1760843125402246487_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=108&ig_cache_key=Mzg5ODcxNjI0MTQzMDkyMDE2MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=HimHwKy2roMQ7kNvwHIWaPd&_nc_oc=Adq0YPquNT9SiLRVa4To3gZz5g2RVafwFzIIILLIal7G3rj4_u1pbpuaM0uDNs9WmyU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5JTPx0CjJ4coUlDR-p9sZFgUlMuRdZqiefjc0dahaqLw&oe=6A0F4F70","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898686069730980639_63069450921","shortcode":"DYa6lMFFDMf","url":"https://www.threads.com/@trendspider/post/DYa6lMFFDMf","caption":"Decision time.\nHOOD","takenAt":1778979622,"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":21,"replies":1,"reposts":0,"reshares":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af6RsRFTR9vGYDjbVbZLgx1D3gE4kBffz8qr5l9PT4sTdA&oe=6A0F2F23","width":1079,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af4U-K4F6mG-3ls6UhmbMoNwRJ8Bth7d9JcSwQchLMejcw&oe=6A0F2F23","width":720,"height":538},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af78mHbFcqS5v6kMNp7Da3MXIKr8y-cx7IQn2cl0T3vROw&oe=6A0F2F23","width":640,"height":479},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af4xrBjLRGnEzc10c0Tdy6ZqrzhlV5retfBL5XlM4EYsrw&oe=6A0F2F23","width":480,"height":359},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af62kvZxGo9_gQiDOqd8puijqlLE7CBTJcz9fRk4g7huFg&oe=6A0F2F23","width":320,"height":239},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af4pHlLGr7VOCTtecbYtDDWj2bZriw9u_MkASHVxp70miQ&oe=6A0F2F23","width":240,"height":179},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af7GqXVEUjt6ZNdKsrzfSkn7E7euc6JpahElO0lH_U1FdQ&oe=6A0F2F23","width":807,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af4_FauG4eyqXK2T-EYYpZFHo-qS5b6LPXL4mdM0avKMJQ&oe=6A0F2F23","width":750,"height":750},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af7Wzk8Ulex3rSBrwF_Ke_wZtw3VxbwGAzE0tXRuPvhRhQ&oe=6A0F2F23","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af7Yea02p2PWs8_sK-IEyQIlEAAELk2JKOGKDQYjvvmjWw&oe=6A0F2F23","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af7KmuaTINCb2QU8GzD3KBHFum17w-gsnsll4nolTefMpQ&oe=6A0F2F23","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af6i0kNz4PUgEPkMkXGPdSQGRwizMfnznHfxby7d4wxVlg&oe=6A0F2F23","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/671222812_17966844444098922_2706382336433435955_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=107&ig_cache_key=Mzg5ODY4NjA2OTczMDk4MDYzOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=wey9HeWRidwQ7kNvwHA34vA&_nc_oc=AdrRvsgGM3r-n-sSng1RYtNrehL1zIIZT20P2mP4pwYjImz3u0BB9GecknlfhzPqa8s&_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_Af6MAdvnxprh4x9rYZHaoRfv2zv6m_wA9CHy3JGmZIv1EQ&oe=6A0F2F23","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898655829856382771_63069450921","shortcode":"DYaztJAGG8z","url":"https://www.threads.com/@trendspider/post/DYaztJAGG8z","caption":"Squeeze firing right as price hits the upper bollinger band... it's about to get interesting SPY","takenAt":1778976017,"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":14,"replies":0,"reposts":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af4lfnjXgbS8E69ud5c2adC7MU-lqrKdU3AcbeBrATKzIQ&oe=6A0F4A96","width":1079,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af72lbJzXoEkGY2lXoqNq-9zAZFhNynJOjn_RSSh7ELO1Q&oe=6A0F4A96","width":720,"height":538},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af7RUYtZ502I4_fVEjjdElm7dgeZqxFa_m1E-JR-omPagw&oe=6A0F4A96","width":640,"height":479},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af4SwLpm5dZ81MwE8AEJzr4JN6tiDzKE85YCV2ewD94CDg&oe=6A0F4A96","width":480,"height":359},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af6iWk5MzaLMjntVQGQCv6JgHY39XOAgKdASz2jIrYH95A&oe=6A0F4A96","width":320,"height":239},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af6RISi--EqUgIo-3d1_pGeRuGas28hDWG9qxQCsVLuK2g&oe=6A0F4A96","width":240,"height":179},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af6UyuLM_7dTV6_HkWzhJvFqi0gUFekJTE2gPW7HwxFThw&oe=6A0F4A96","width":807,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af7XySoJ9jBHdKW6rNz4cnfbTAZ_J0w7ML8Kp50LQP06pA&oe=6A0F4A96","width":750,"height":750},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af7U-LviBXuH5lDHEuctg0IdtIevKZp0H3iVMZXVLDwt7Q&oe=6A0F4A96","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af4VZLdfpUTF68rqSXt86qlrJV7-c47LTDgWaJ0cc7GWFg&oe=6A0F4A96","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af4sjRz3EnObqqcrdxMt47qEXhZ6HgGymyQnIxf9KgsVRw&oe=6A0F4A96","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af6FnEm4wJXq6zalBpDg8SngU-LNx799EK8cXj3EGlBS_Q&oe=6A0F4A96","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/695896169_17966838000098922_7849290016447850227_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=106&ig_cache_key=Mzg5ODY1NTgyOTg1NjM4Mjc3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KRGDW3UwivwQ7kNvwFdf_hH&_nc_oc=AdpV3vqgX1D0VUF7kj2WtkOGAj1rYJpPDH9tD7icL62vM0vmn2igaOo8-c0sGiwIlOk&_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_Af5Rs8F0gx4sF0BajxMVuxKsA1KgmsAlTDnzyRVpvzZmyg&oe=6A0F4A96","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898595444159336352_63069450921","shortcode":"DYal-acEs-g","url":"https://www.threads.com/@trendspider/post/DYal-acEs-g","caption":"what's the hardest thing about trading?","takenAt":1778968818,"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":3,"replies":7,"reposts":0,"quotes":0},"pinned":false,"reply":false},{"id":"3898565320718346601_63069450921","shortcode":"DYafIDzEulp","url":"https://www.threads.com/@trendspider/post/DYafIDzEulp","caption":"If you bought $10,000 in TSLA in November 2021, you'd currently have $10,186.80","takenAt":1778965229,"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":37,"replies":6,"reposts":1,"reshares":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af679k6ZCzrwMz3lRkQT0PBNRTWWAfbtpBeBaiz73wN5eg&oe=6A0F41B2","width":1080,"height":720},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4rYN3RrPBVyH1FbRJTNPnvFI-DP4fGJCFMiqN5rb6MIw&oe=6A0F41B2","width":720,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5kpPbgCeDU5riG0G-I8EFuKT5z_Q8YDvttXCXSrypZFA&oe=6A0F41B2","width":640,"height":427},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5-i8VMQwGa6YGRLiSAZdDzuwSCeA6mRqgyzOYGeE6Z7A&oe=6A0F41B2","width":480,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6Gm0QgXxGn78S4siah1B89h2gpulu2JAxOkEZGdIk3Rg&oe=6A0F41B2","width":320,"height":213},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af77lWDxM3VGgqWwYlzn_aR4sAYqHyE_yaJhQkYfSfe2cg&oe=6A0F41B2","width":240,"height":160},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s720x720_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6EP6Mp9XZJnlTXARhXk1_O-WiA8XVaa41S91o0gE2p2g&oe=6A0F41B2","width":720,"height":720},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s720x720_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7y_YdQuS5bseAGWPtKbbiwT6qyO46_eWYWgMTsAQxcZw&oe=6A0F41B2","width":720,"height":720},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6XHEPLIkKWlFKj6AETfxuOj8dn6bUv3HE37jQZVn6VhA&oe=6A0F41B2","width":640,"height":640},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s480x480_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7C1K2_RZEwqqPIueeS2clN2PTvprRb330277LWsyVloA&oe=6A0F41B2","width":480,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s320x320_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4RLaUcyVWx4uxNe4SLaPYzx7mceNCC_My6nJpqjrWtZw&oe=6A0F41B2","width":320,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s240x240_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5uI88A8GopINVW4V5eOSPVV4K4RAnOE_QHkpKkq0Sy6g&oe=6A0F41B2","width":240,"height":240},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701019383_17966821341098922_2828956815382375905_n.jpg?stp=c180.0.720.720a_dst-jpg_e35_s150x150_tt6&_nc_cat=108&ig_cache_key=Mzg5ODU2NTMyMDcxODM0NjYwMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=e8l9HKTk-iMQ7kNvwH7qKxh&_nc_oc=AdohZmq4h4eY9hXhr7a5I3zi0KBm0TirGNCjCFIWtldjFRP1kggpxMe_0dBrxX_2YXI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6_zBBTKRYqBPTYpTQjtpH45gK3w-JfFga0mRNMRda2jg&oe=6A0F41B2","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898534981732569283_63069450921","shortcode":"DYaYOkampDD","url":"https://www.threads.com/@trendspider/post/DYaYOkampDD","caption":"Call buyers getting the service NOW 💰","takenAt":1778961612,"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":59,"replies":2,"reposts":2,"reshares":3,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4C9SpX4BBE7PUSpJgX4ExwD5ADLvIZP1Ie66EN2Tyr1Q&oe=6A0F36BD","width":1079,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6fFYlszrfeOGrPnRiOz9qzk_iHCanOrfygJEO2tHKZqQ&oe=6A0F36BD","width":720,"height":538},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4W37NVkvMBKXx1TeN2KkdeLUPMHAWcCYAWtReuDprc8w&oe=6A0F36BD","width":640,"height":479},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af600WTFW4ZkLQrcKoQJZLOvtscGNocgmCBurmxRUudcnw&oe=6A0F36BD","width":480,"height":359},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7EmYq_n0QnM-Rexc-ojgydboUILTG7XM8LopFuTG-epQ&oe=6A0F36BD","width":320,"height":239},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6Hewpq2lFujwuOEPaUD1V-eEWR3hmDq9eyO0WyzEjKcQ&oe=6A0F36BD","width":240,"height":179},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4zPbeaTsMBP23J4MbjzXCG59PF9uSY0xPrIkrALhd2uw&oe=6A0F36BD","width":807,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7XFU8mdgsIM2lwsLfaaUPgdKdoppav5q1-_kCdBAbfng&oe=6A0F36BD","width":750,"height":750},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af64iC6rGY62aMmV-xOgmmHjsyqgunSjgJvW0QvtmqN_RA&oe=6A0F36BD","width":640,"height":640},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5ep3ngt6o6Mxv4sn7jRPIXxWDqO1U6vA0R2LYAx-TogQ&oe=6A0F36BD","width":480,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af70Gxi8SjXd8l6ksKH6ORmBaTTvX_6Ehf6ctRAyv4JjrA&oe=6A0F36BD","width":320,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7_xWSANa_uqQkcUnbi7f1RfTGLDgVYqGBkmFvnEiYTuQ&oe=6A0F36BD","width":240,"height":240},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/701234323_17966814816098922_7755454012241187443_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=110&ig_cache_key=Mzg5ODUzNDk4MTczMjU2OTI4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QDsELHi2aOcQ7kNvwHiEL-g&_nc_oc=Adq5e4xyg40wvioHjDnsfCtr9qjSSzs0ltX9yl9nrq1J-m3wHa5ANsWLYydVXyN3cK0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4KhtpiowWHfcOnm_rHai8nB8BukwMq75OFCnPTlfJW7w&oe=6A0F36BD","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898528657233243489_63069450921","shortcode":"DYaWyiREW1h","url":"https://www.threads.com/@trendspider/post/DYaWyiREW1h","caption":"Textbook Strait of Hormuz breakout\n\n#SPY","takenAt":1778960853,"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":26,"replies":0,"reposts":2,"quotes":0},"media":{"images":[{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af5VQtJjlX65DTbL-WL5CfyoJLTMkqFl2qI0nKGwV4-IEQ&oe=6A0F3B2D","width":1288,"height":1288},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s1080x1080_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af7nYetPORodIBmbcCSBB-yXT8cGLIZOW3YaBVBsCcrmIg&oe=6A0F3B2D","width":1080,"height":1080},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af4HhSEao-hUcyAC7FYimAEvY7aiaPynMNfPvgwkC2_SQg&oe=6A0F3B2D","width":720,"height":720},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af6q5JZVuHBZLvygEuYyzzT33xI1xE-Q3JsO9vbBgzRt5Q&oe=6A0F3B2D","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af716j9FBWY_NT8l4I2Aq_BLr8E7ruyvVagsA-d6L5flug&oe=6A0F3B2D","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af4HeaOzNzf2EetU-yVTlE94PqBIn9CK7OuyLiNoxtP12Q&oe=6A0F3B2D","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af7SKXmGnpXUjwi91hR4exXw5jBqN5bSek0gRQ7mGUqFQw&oe=6A0F3B2D","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s1080x1080_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af7nYetPORodIBmbcCSBB-yXT8cGLIZOW3YaBVBsCcrmIg&oe=6A0F3B2D","width":1080,"height":1080},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af4gHv34H4b2qSlN05GqKXUQ6ZT_g5cSGAjH2q6vy2-M0A&oe=6A0F3B2D","width":750,"height":750},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af6q5JZVuHBZLvygEuYyzzT33xI1xE-Q3JsO9vbBgzRt5Q&oe=6A0F3B2D","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af716j9FBWY_NT8l4I2Aq_BLr8E7ruyvVagsA-d6L5flug&oe=6A0F3B2D","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af4HeaOzNzf2EetU-yVTlE94PqBIn9CK7OuyLiNoxtP12Q&oe=6A0F3B2D","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af7SKXmGnpXUjwi91hR4exXw5jBqN5bSek0gRQ7mGUqFQw&oe=6A0F3B2D","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/696364872_18582116740062925_6350229890170878469_n.jpg?stp=dst-jpg_e35_s150x150_tt6&_nc_cat=107&ig_cache_key=Mzg5ODUyODY1NzIzMzI0MzQ4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ouHafGKh1eYQ7kNvwFdl4qM&_nc_oc=AdqcHblgHBdyEKv-ml_WiiFwQMeoT4m03r-n1uMS3VIbeyEMJvaFy4on0GQtH5MDez4&_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_Af7-B9tV8oxSL2FTpGDPpUMEmDkFQI-TnYqCxgWj791fCw&oe=6A0F3B2D","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898504858827727935_63069450921","shortcode":"DYaRYORj6Q_","url":"https://www.threads.com/@trendspider/post/DYaRYORj6Q_","caption":"Engine's warming up UBER","takenAt":1778958022,"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":19,"replies":0,"reposts":0,"reshares":2,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af7qaxNjIQOyyHgmeQOZ__vPZRZRULTANLI4bJks1pwfpw&oe=6A0F3E58","width":1079,"height":807},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af7uYUvSEtdQ8lj-ivrMEjLsyYjK9BBg8ceqppWtznOnoQ&oe=6A0F3E58","width":720,"height":538},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af6ZpRjUJD1s9tCTOn_D1Juj547LwnpNH5y7dY8OWuK3JA&oe=6A0F3E58","width":640,"height":479},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af7GwjlMg9pJTDLd96gbD85vMrSwPJ7M_EGClzjod4SS3Q&oe=6A0F3E58","width":480,"height":359},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af4XyxABAXdwSIryVUFDccRlIPwyqO5eSQgJWSTlPq00uw&oe=6A0F3E58","width":320,"height":239},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af4QnfwpHI3CazWl3LyMEM3aLQ3zC19HUssYRoqqTyccWw&oe=6A0F3E58","width":240,"height":179},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af4sMlytYjibHcEwVaV74MgiUxMNr_frd0eJNL2Bi_zxKw&oe=6A0F3E58","width":807,"height":807},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af6sKDqC3sQ7sgRZn5-y6FOOSzWY0GDKUpwRi-EC5c3Ygw&oe=6A0F3E58","width":750,"height":750},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af7VEh041JxFYXFlnnAnp54sn8lC2Vevf7saMQGXrQ3k5Q&oe=6A0F3E58","width":640,"height":640},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af6aMR7At1StNDxvO16lAxV-Mb9f2haj_20kMdKAMUlP_g&oe=6A0F3E58","width":480,"height":480},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af6HTyYfufFwoBCEzM_5313sEvdfZ6SBB0RJzxQrrnWGRA&oe=6A0F3E58","width":320,"height":320},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af68uLnFsuh-1hrLOM3atMmsHSA-fCNSfxihdLILMRt6cA&oe=6A0F3E58","width":240,"height":240},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/695772785_17966808030098922_7692699915640694327_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=111&ig_cache_key=Mzg5ODUwNDg1ODgyNzcyNzkzNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=kLKhD-OznacQ7kNvwE-7Mei&_nc_oc=AdqPI_47E61Np_Hsr8H0Oe3a6BcvBee0QqzOVEHmjZOz8q5amNWBaxzHbl9wBLHAiX8&_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_Af50o2lfhWsELoIbt5EMntZoBl_TeCTtxUS_Rct-_rE56Q&oe=6A0F3E58","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898474659730206220_63069450921","shortcode":"DYaKgxLFK4M","url":"https://www.threads.com/@trendspider/post/DYaKgxLFK4M","caption":"By a hair, ONDS managed to close above the upper aVWAP after 16 weeks of rejection 👀","takenAt":1778954420,"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":39,"replies":1,"reposts":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4dI7wB6jg2extd5gy_tzVMLoJvvTBZAMdw4EdEQE_AMg&oe=6A0F256D","width":1079,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5l8b43-yIbHkrIoSTB1PPG4tK9CaYmSDdVXjF0WMeXcQ&oe=6A0F256D","width":720,"height":538},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5H-po0uXr7NEdpcNmX9gFi_GZLPXI55pvsHjuo9FOvtw&oe=6A0F256D","width":640,"height":479},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4TaoJhcReq0nIgolm80kUn0-bidg_Gh-1Uoy_qTkLL9g&oe=6A0F256D","width":480,"height":359},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6--dXVhPnduDX7vRX14Pkk78PBnL_MD5Gy70r9YxebHg&oe=6A0F256D","width":320,"height":239},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4mpMMZGeWviouCazvxIbME8miHzyFig9ApTDpcgcX4pw&oe=6A0F256D","width":240,"height":179},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5IkFJlwzoGh0_Jk1pZ4Cj_CNYhmVZizYNFQcZRpf0pfA&oe=6A0F256D","width":807,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af661YYEP5lWa9bgIqqbBKPmvc2f2IbA8kMjb4WF8ofjaw&oe=6A0F256D","width":750,"height":750},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5ZmEOvhZjDMbZo1PJuNxcswGusk1tEHZwOrxi-piH6YQ&oe=6A0F256D","width":640,"height":640},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4bnejegYYfCC0KQrktlwdaeeNruCJL6iT5MN9E15z83A&oe=6A0F256D","width":480,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af45Ae2ONGh_gOlBqv-07bUSGeXdC9B5Kfdt2aP1hfEO3Q&oe=6A0F256D","width":320,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5ENSRo8WZdEwO1DzkwSR_BIO0a4Amlo1qmezO35X9ERQ&oe=6A0F256D","width":240,"height":240},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/696775455_17966799228098922_6061066430340863163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=101&ig_cache_key=Mzg5ODQ3NDY1OTczMDIwNjIyMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QR_abA5TI5kQ7kNvwHLhBC0&_nc_oc=AdoHqAn982Lnoka6zpSRujNFT7n6TKYDl0Wb0fMhRHDBu-vfiOf4YyqGwof_84c0LkM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5i13driJpOmyNJ4tpGR4SCQuvwyREpZpIJjNKQ3VPh9Q&oe=6A0F256D","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898444463466949394_63069450921","shortcode":"DYaDpWtiSsS","url":"https://www.threads.com/@trendspider/post/DYaDpWtiSsS","caption":"BREAKING: Financials 🩸","takenAt":1778950821,"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":14,"replies":0,"reposts":0,"quotes":0},"media":{"images":[{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af52t32N_7OX3vWFoTQO5DwIVCMN3dygbbdruCZs3p_FCQ&oe=6A0F39CB","width":1079,"height":662},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af6XYeDj3hpPa5hprLYLoQWoX4bfVThZPyC0T43SaOdnzA&oe=6A0F39CB","width":720,"height":442},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af49JdDLb9SQ7dFiqSlfRk8c8nCzafOcW4P9rL0r92ysZw&oe=6A0F39CB","width":640,"height":393},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af65yhHqJJg12z7SmS6R9yLNIrPtHttgyQ1Ggdn-pLYBCA&oe=6A0F39CB","width":480,"height":294},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af5pLzXm1ZFIK4d9BYYGlLNhXoBS72r5qiXy-vY18qaY2w&oe=6A0F39CB","width":320,"height":196},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af4pn_9Mb1yP1jaF1w4FT8WBGr10KFkhWvsyQAQPy-9RWg&oe=6A0F39CB","width":240,"height":147},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s661x662_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af4j1jE0BGXcTMZWK1RNjTN-qG_v8X3cZ9GTkuFpNH3y3g&oe=6A0F39CB","width":662,"height":662},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s661x662_sh2.08_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af6rTbcoCigsN7e7DHlRU2H23-IVSTcUhHnHealEX1Cpiw&oe=6A0F39CB","width":662,"height":662},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af6MEUtMBfOsq0-A1DWkyHJZRue3uifZ_CV41CZvcEf1Qw&oe=6A0F39CB","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s480x480_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af41FqC9mUZRVZGOKKUk00A-zK80WQQiCJkSuWB0CapeEg&oe=6A0F39CB","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s320x320_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af5SoZ0t4dXPAvra0RI3hldJRFaGgOyyRLE7m2_sXeXyHA&oe=6A0F39CB","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s240x240_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af64thN7GouAvW10y2KjQYPeHg_Oo9COt0gHifBK8zrkpw&oe=6A0F39CB","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/673844772_17966789682098922_1872441662135561116_n.jpg?stp=c208.0.662.662a_dst-jpg_e35_s150x150_tt6&_nc_cat=102&ig_cache_key=Mzg5ODQ0NDQ2MzQ2Njk0OTM5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=erw0qu8hPMIQ7kNvwGPAQok&_nc_oc=AdoLXpNzfDdDL_TUi6SP17fvQTO1nrXmDpih043_qTVoLvFuOKPD2lr1MWTLp3aYDQQ&_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_Af6IRr1TJfcNgrCn8bqZxfpWhA9ASxGZUJSTkyo5bW-Bzw&oe=6A0F39CB","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898414199533593631_63069450921","shortcode":"DYZ8w9OieQf","url":"https://www.threads.com/@trendspider/post/DYZ8w9OieQf","caption":"Billions and billions served. This dip included. MCD \n💵 trendspider.cc/RSIensemble","takenAt":1778947213,"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":54,"replies":2,"reposts":1,"reshares":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5qbmcABUoXa-mBgE5XVoBt2Wn1L-3X4QH3GpslA0Kf9Q&oe=6A0F5444","width":1079,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5rUqEKT1yyVAISTwjkLCyzM1IpKYDvXZZfna-DJ2X67A&oe=6A0F5444","width":720,"height":538},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5zqfZr-xlThwWRJmey9lX6k2J7kLI0HJ8rzNY0_Dts5g&oe=6A0F5444","width":640,"height":479},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7QbHf_b2pBxb40bfoH6k6739m3jmhWLB69bMEiYmRAXw&oe=6A0F5444","width":480,"height":359},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4BWSMy23B6ZTpsho5sHBE0jFA7JkUAFPetJ0q3gpkHIA&oe=6A0F5444","width":320,"height":239},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6_RxP1ckcluUY3zAAKo-CBCZV_YpY96ENG_xGzV95LZQ&oe=6A0F5444","width":240,"height":179},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af70BRESF1QIHlyYVCrMaR6kO4IJk22sIoPp-4ITmm4pUA&oe=6A0F5444","width":807,"height":807},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4vB69mTxqr-vpJnu8HKagv4WNq6EFUHYdZIeG9C9fOKg&oe=6A0F5444","width":750,"height":750},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4jho7kKGKKkMHGCH7voFTLjSF1mO2OWgy3X3v6UNdB_g&oe=6A0F5444","width":640,"height":640},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7AgXXms8PjZyb5jigDTpSXD5-j6cC2T2pG6WtoC7XvTQ&oe=6A0F5444","width":480,"height":480},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7kU2ZDe4LuM7Qjhatp70PcCSgh_vt4K3Qtk1FQrYJVFw&oe=6A0F5444","width":320,"height":320},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7Iueev2QmP_h3gT-txQIdRoD5Wl1avnaa19haU6XLioQ&oe=6A0F5444","width":240,"height":240},{"url":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670399876_17966778660098922_153824524030187163_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=110&ig_cache_key=Mzg5ODQxNDE5OTUzMzU5MzYzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=3YLPZjb87HEQ7kNvwHKsjNZ&_nc_oc=Adpqhu45HUvtM06o4HaVcAv9FX8-H9ooLVbmHV3OhIN-JdsYbAecFgl0w01Rz8lQv9s&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af47JoMEz-rcbFO_jV3Yo_J5J63Y3RM_5GtKvhLeWNP4aA&oe=6A0F5444","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898388830789849513_63069450921","shortcode":"DYZ2_yvlFGp","url":"https://www.threads.com/@trendspider/post/DYZ2_yvlFGp","caption":"Play that funky music 🎶 SPOT","takenAt":1778944189,"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":24,"replies":1,"reposts":0,"quotes":0},"media":{"images":[{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af4LxX6tOsjrsW_R0ZjN9Z1HE5DepYSeM69UEk2QXFMmmw&oe=6A0F4443","width":1079,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af4FELDmvsGaoGJ2WETbkDTmO1Oq3oqyEe-5IAZLsWOB6w&oe=6A0F4443","width":720,"height":538},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5dXcUkl-zxkVviqLiA6DivDP9lXsyLunTaOAhgdODYbg&oe=6A0F4443","width":640,"height":479},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5k2fG7j8HSAjzHoOesJkhmM30-IUsnjIDl4zi33OmEUg&oe=6A0F4443","width":480,"height":359},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5NgNsn-YB52Ila5bjEM4y1kuJmMRDpT-sPp1tCP9WJrw&oe=6A0F4443","width":320,"height":239},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af7lMiEi3MC4kHQjA42kyuh1Uc40z4cMAp6lDHI8AkeQ7A&oe=6A0F4443","width":240,"height":179},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5fCb6sOqsApkGlU53yKyiARH3ReD4flsKnh2JqgOWWoQ&oe=6A0F4443","width":807,"height":807},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af66XONHPWi_EQ7nsWALs7rEblufZh0TMQjbeEuUOglPJw&oe=6A0F4443","width":750,"height":750},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af65A32BAb349MHPUxMbdtkYhDHKA7rpa6aljeNi7tFe3Q&oe=6A0F4443","width":640,"height":640},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5Rfes_3m83g75s8iu4BalSptSZKkqh9SHc8GmOWvECQQ&oe=6A0F4443","width":480,"height":480},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5YcPz0mrga6BitcBmiAUigpMcgdcK1HL-8XpAqZVol6Q&oe=6A0F4443","width":320,"height":320},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af4n6qDOsKc5tCVjdjwRy8io-QCmVH3jHV_Qb0zhkF_iAA&oe=6A0F4443","width":240,"height":240},{"url":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/700669316_17966770875098922_7635924495939504555_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=107&ig_cache_key=Mzg5ODM4ODgzMDc4OTg0OTUxMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=H5ufzlWaetIQ7kNvwEBQrb-&_nc_oc=AdphWNlCuNvQhkOyAsx05omZE2eVVu1tbsaUx0-KR-WqT7oIjZQyKGYUruEbSM7ZfPM&_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_Af5rmNgjAx79ivHp0dNO17ZW-DOsijj1Ja154RWSYy58nA&oe=6A0F4443","width":150,"height":150}]},"pinned":false,"reply":false},{"id":"3898354138199213415_63069450921","shortcode":"DYZvG8wCcVn","url":"https://www.threads.com/@trendspider/post/DYZvG8wCcVn","caption":"Took the fast lane to ATHs PANW","takenAt":1778940054,"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":40,"replies":1,"reposts":0,"reshares":1,"quotes":0},"media":{"images":[{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af7U-5ptQ5leXgGsljpXjYKis2jAXD99kIIH-2g-x_1u5A&oe=6A0F35A7","width":1079,"height":807},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af72E09hqPz7GTXfgILVy7nEkjzsMEV4-l3U1f2c7QvZ0A&oe=6A0F35A7","width":720,"height":538},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af4tf94gWj-4MzLFgk4JF8t9QlXGGGUOnvccKbKnF06VpA&oe=6A0F35A7","width":640,"height":479},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af4JPxV8y8mzaa3J8C_LdDEvH0Xe0BHE-APJHCOND_yhrQ&oe=6A0F35A7","width":480,"height":359},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af7v4aoAbbeO__WGBV8lbvtq1OCp0ceRsIvZ6sjm7M92dA&oe=6A0F35A7","width":320,"height":239},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af4URgAJTV9pjqwHGxK6dHiYoWGBmBH7svGtzCs-imivfg&oe=6A0F35A7","width":240,"height":179},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s806x807_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af7bZ4fQRcaLoAxvNDpURd0NrfNVTO1Cq4pGosrUOilsRw&oe=6A0F35A7","width":807,"height":807},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af5o09X21PF1plXIjElob_4o0s--Ps06CYWWb-2U1K9Rjw&oe=6A0F35A7","width":750,"height":750},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af4EZe3Vmkjc9tPKXWfyoWT8DX-cVcOXCP9ivbcz_naXmQ&oe=6A0F35A7","width":640,"height":640},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af5DPGlVFibifETQI4pFLlKQKKqEF7jfPyQVtHheEW2zfg&oe=6A0F35A7","width":480,"height":480},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af7H3nTFA7uoxieWQ0ioYFJ7uKwNKvLfBVhuW60pftEJUQ&oe=6A0F35A7","width":320,"height":320},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af4nk99WEzdH81Xonf52iPOyn9skkNx3ohlXDf8ciIpKtQ&oe=6A0F35A7","width":240,"height":240},{"url":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/701746597_17966758416098922_3454628380941886951_n.jpg?stp=c136.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=105&ig_cache_key=Mzg5ODM1NDEzODE5OTIxMzQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QIlnh3unSQUQ7kNvwGvJXU_&_nc_oc=AdqPyzkwq2_g7Pq0O5AG4o32VL_a-r_LSXwmPv6n977VM8W3_KljPfoM6H3qbGAgnjs&_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_Af5Cx3n8QaXOqz2rmMZP6e7T3SkiMPgjjJ7Kt25aq80ybw&oe=6A0F35A7","width":150,"height":150}]},"pinned":false,"reply":false}]},"meta":{"requestId":"req_4fefb765-14c8-4c2a-aa12-55d7f65a2f77","creditsCharged":1,"version":"v1"}}},"found_trimmed":{"value":{"data":{"lookupStatus":"found","posts":[{"id":"3656367813102434565_63055343223","shortcode":"DK-BydcJHkF","url":"https://www.threads.com/@zuck/post/DK-BydcJHkF","caption":"Example trimmed caption.","takenAt":1750093031,"metrics":{"likes":100}}]},"meta":{"requestId":"req_01example_trim","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","posts":[]},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","posts":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/search":{"get":{"tags":["Threads"],"summary":"Search Threads posts","description":"Search for posts on Threads.","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 public Threads posts."},"required":true,"description":"Search query text for public Threads posts.","name":"query","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":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"Whether to request a smaller response shape when available."},"required":false,"description":"Whether to request a smaller response shape when available.","name":"trim","in":"query"}],"responses":{"200":{"description":"Search results for the requested query.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"query":{"type":"string","description":"Search query string evaluated for this response."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable post identifier string."},"platform":{"type":"string","enum":["threads"],"description":"Social platform for this search result."},"url":{"type":"string","nullable":true,"minLength":1,"description":"Canonical public post URL when available."},"code":{"type":"string","nullable":true,"minLength":1,"description":"Short post code used in public URLs when available."},"text":{"type":"string","description":"Post body text when available (may be empty)."},"createdAt":{"type":"integer","nullable":true,"minimum":0,"description":"Creation time as a Unix timestamp in seconds when available."},"author":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Author profile identifier when available."},"handle":{"type":"string","nullable":true,"description":"Author username without a leading @ when available."},"displayName":{"type":"string","nullable":true,"description":"Author display name when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"verified":{"type":"boolean","description":"Whether the author is marked as verified."},"privateAccount":{"type":"boolean","nullable":true,"description":"Whether the author account is private when known."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public profile URL when available."}},"required":["id","handle","displayName","avatarUrl","verified","privateAccount","profileUrl"],"description":"Author details when available."},"metrics":{"type":"object","properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"reposts":{"type":"integer","nullable":true,"minimum":0,"description":"Repost count when available."},"quotes":{"type":"integer","nullable":true,"minimum":0,"description":"Quote-post count when available."},"replies":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count when available."}},"required":["likes","reposts","quotes","replies"],"description":"Engagement metrics for this post."},"media":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["image","video","unknown"],"description":"Normalized media type for this item."},"url":{"type":"string","minLength":1,"description":"Direct URL for this media item when available."},"width":{"type":"integer","nullable":true,"minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","nullable":true,"minimum":0,"description":"Height in pixels when available."}},"required":["type","url","width","height"],"description":"An image or video surfaced from a Threads post."},"description":"Image and video items extracted from the post."}},"required":["id","platform","url","code","text","createdAt","author","metrics","media"],"description":"A Threads post returned from a search."},"description":"Threads posts matching the query."},"totalResults":{"type":"integer","minimum":0,"description":"Count of posts returned in this response."}},"required":["query","posts","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":{"results":{"value":{"data":{"query":"basketball","posts":[{"id":"3876725847588352169_63251387228","platform":"threads","url":"https://www.threads.com/@stephencurry30/post/DXM5Z5dFDCp","code":"DXM5Z5dFDCp","text":"More Basketball…hallelujah 🙌🏽 #dubnation","createdAt":1776361755,"author":{"id":"63251387228","handle":"stephencurry30","displayName":"Wardell Curry","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358368280_3400236993530590_1079006879528539939_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=6uSM26Lh_eEQ7kNvwEw-1Hv&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af4tlcFMsHSAsdjurTBBBuvqVHjvljDAWJrDiAWkYdutQQ&oe=6A035E56&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@stephencurry30"},"metrics":{"likes":9042,"reposts":322,"quotes":32,"replies":176},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670345496_18595653469055989_8459276903260116236_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzg3NjcyNTgyNDY4NzQ1MTYxMg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ahzAjlbgDkEQ7kNvwHyXjBe&_nc_oc=AdpqELicrWf9j4CerMzgT1g_jptuyLkkacU6aUguAoQCdRAnnPiuJ_SydoKm_R_3AHg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6TylgxbZksED_LaMSZo797VJ6-y3hP18WSioj3P7x2Cw&oe=6A036458","width":1440,"height":1919},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670345496_18595653469055989_8459276903260116236_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzg3NjcyNTgyNDY4NzQ1MTYxMg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMiJ9&_nc_ohc=ahzAjlbgDkEQ7kNvwHyXjBe&_nc_oc=AdpqELicrWf9j4CerMzgT1g_jptuyLkkacU6aUguAoQCdRAnnPiuJ_SydoKm_R_3AHg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6TylgxbZksED_LaMSZo797VJ6-y3hP18WSioj3P7x2Cw&oe=6A036458","width":1440,"height":1919},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/674436147_18595653484055989_3776885372287682627_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzg3NjcyNTgyNDgzODQ1MTk4Nw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=zSFbeLTpG84Q7kNvwHO6CQi&_nc_oc=AdoJ4cbjUlxT5AySHL6lp90qwmGoG678t5g53Up98Otgoi7axaJIaZbsFo-58XnuglY&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6Obpl2Jn3KgdaojjDHSAnJzpSDFagBOpcmIEsCI51EqA&oe=6A0394B6","width":1440,"height":1920},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/671133924_18595653493055989_7828019092020901657_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=104&ig_cache_key=Mzg3NjcyNTgyNjE4OTA0MTM0NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=MlYMdOe0YpoQ7kNvwFGc-4x&_nc_oc=AdoFeA4YMfP4qLRPeC4Iui-dZOl70OU9dTo_8xpaqBEF-GzZPSP2NNrMbTFFffE5AEk&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4f1gr5vK9ZI95Xf7q0KvBD-cdPp6a-l7DsMPerhDtQ0Q&oe=6A035ED2","width":1440,"height":1920},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670427656_18595653502055989_5292711628584486933_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzg3NjcyNTgyNTMwODI1NjI3NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=aAO6MmS3T8YQ7kNvwG-3NC1&_nc_oc=AdodUZNaK9EHAFKhbbnC0u0o0KZxWKQYU8I2h7Oy3o1YtG8mTJm1y7F_KGAQiv35Q5I&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af48CyVZg10EoRpKr6w0MTbN6eCVMAOLGmV0_kLRdiWd3g&oe=6A039313","width":1440,"height":1916},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670548088_18595653511055989_7586927015945469893_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=104&ig_cache_key=Mzg3NjcyNTgyNjU4MzMwNjAwMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=FDMSNanSYsYQ7kNvwGwuypY&_nc_oc=AdrnA4owepcjc7rwsrrizOLBscVyofNbABuTgDteeA9fesELkssc6Dyd3i_ArzTRMjk&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7U2jF11R5ifI2EeuH-4QIeaBczgiwhpjavH2xIWZk5rQ&oe=6A036889","width":1440,"height":1916},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670554215_18595653520055989_5916237670713346745_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzg3NjcyNTgyNTI0OTUwMjAwOA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=lOuCdGOGM24Q7kNvwHAKrfb&_nc_oc=AdozlgwedkNuY7TM3HLOYjj_Hq0K4-cnhUwfQp4_B3s6sNTI57-pQeN_pzVZWQCGH7A&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7DUfrCnHkf2O9f9QXGYE97P0rK9mpBH-32ewaVv2I-9Q&oe=6A037003","width":1440,"height":1916},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670494428_18595653529055989_6642892461502154979_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzg3NjcyNTgyNTMwODI0ODE1MA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=DoMeqVPVmaQQ7kNvwFGyjzd&_nc_oc=AdoS-31PiKMdy_hRInhAB4Emd5ISRvB3Mf3CL6J8Z45U1V4fJaoLgzdoua5dT9BLeVg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6WoUpdWge_6giVz0_ka9LWg5KtVg2PN4BeAsIQ1XIdsQ&oe=6A03957D","width":1440,"height":1920},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670078435_18595653547055989_7041332198653620802_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=102&ig_cache_key=Mzg3NjcyNTgyNTkwMzc4OTA1Ng%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=A_q2D_5Q92oQ7kNvwF_L3Gx&_nc_oc=Adqvf2CcBx0znrC--_J-7AehNDNYjC0QrGYD-dHPbLQA8To_34srMk2Bu8x68gdLjnk&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5z5Ppa30ZJnTRAlxe3joEDQS5Vmjrn2sYIS7vkRcG3SQ&oe=6A0388CF","width":1440,"height":1920},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/671151104_18595653601055989_3696562227318421272_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=107&ig_cache_key=Mzg3NjcyNTgyNTk1NDE0MzE5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=va1zq9rbpHQQ7kNvwGVAesH&_nc_oc=AdpHRj3kANhWz8_i92oebFfSZ48RdhPamvGQENSd6gx5D6FguBc_6mi3p98nOuCHsf4&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4SFKtuBEdpq6Xv0QQnXsA8f-gl5GlRzIYSVOU9_rdaYQ&oe=6A038F11","width":720,"height":960},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQMAtODy9nobF31ZkwCXZQaqHvAvonKmtLBw1k20q5sPQQLCjwAn-HIKHhwjzM73uGCL_0gwVyXhuUT9Vr4SJuhzhONLpLgDaUiUl3o.mp4?_nc_cat=110&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=RFQr2KPoyeIQ7kNvwFBbfD0&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MTkxNzcyMTEwNzIyOSwiYXNzZXRfYWdlX2RheXMiOjIxLCJ2aV91c2VjYXNlX2lkIjoxMDE0NiwiZHVyYXRpb25fcyI6MjQsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=e1652666175983fc&_nc_vs=HBkcFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC80QTQyMUQ3MjNFQjVERTM3NjVFMDU4M0YyMjc5NDBCN192aWRlb19kYXNoaW5pdC5tcDQVAALIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmuuyC1JuR6D8VAigCQzMsF0A4CHKwIMScGBJkYXNoX2Jhc2VsaW5lXzFfdjERAHXuB2XEngEA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af7_bFSprY7gLk0sZrXGn0c5K-WVEK2cHtPGL4MnxEtBOg&oe=69FF7362","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/671027763_18595653538055989_7915583554186778611_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=100&ig_cache_key=Mzg3NjcyNTgyNTI3NDY1NDA4OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=ZProORsz_XQQ7kNvwGN0IXw&_nc_oc=Adqv02b7HM4eGlrYk-fj5X7E9sMxdR3_Fe1N0hEruApBXbmeJdSWtWfmpGYIgXg5h6k&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6kD8B1AC0c94KV4StFlMcL0Xjdp1bVbxi_p5FML59x5w&oe=6A036791","width":1440,"height":1916},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670400542_18595653556055989_3874155124474090094_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzg3NjcyNTgyNjIxNDE4MDIxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=RjFjeOHfcWwQ7kNvwFCb-aH&_nc_oc=Adq30g8vbqzK3MeH6ThaV59RUfJNE8MCGno3hMLAo61j3OLvbsbOj5CneBDeF3yrTT4&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5izV9w0ObmMJlxKV08FKRXobmDKP-cBvC-wSXw_HFm3g&oe=6A0386AE","width":1440,"height":1916},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/670320744_18595653565055989_601982631224231400_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=109&ig_cache_key=Mzg3NjcyNTgyNTQ1OTI1NDA3Ng%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=QNAXdFcJFrMQ7kNvwFRXVYD&_nc_oc=AdpqRKxyZIzkrdlkcKu_oTlxImVlZLaiKlxL0sl0t0uyqFRJXM9RqZ7SLcpCI1VUwTM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4NRX9gUq5CONeFuJ33sbuZuB3iBAd4za5jEIH_tCwHQA&oe=6A03786C","width":1440,"height":1919}]},{"id":"3892389126180107375_63126336784","platform":"threads","url":"https://www.threads.com/@goldenlights_takayuki.maejima/post/DYEi0mZjvRv","code":"DYEi0mZjvRv","text":"#basketball \n#basketballplayer \n#basketballneverstops \n#basketballislife \n#basketballdrills","createdAt":1778228966,"author":{"id":"63126336784","handle":"goldenlights_takayuki.maejima","displayName":"Takayuki Maejima","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/448167053_449979904418458_2700591184457771306_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=qRNG_WUBiFMQ7kNvwHeHVQk&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af4LQFp6cJFA9yVNDcGFAN5he5k58o0uD9nRyixxa4E2MA&oe=6A036F10&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@goldenlights_takayuki.maejima"},"metrics":{"likes":2,"reposts":0,"quotes":0,"replies":0},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/688340174_18082737668565971_7720218509594296173_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=108&ig_cache_key=Mzg5MjM4OTEyNjE4MDEwNzM3NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=6UtMTd80NAIQ7kNvwFwQmta&_nc_oc=Ado1zBjKJxtaewjZTS4wiAl3ryr4CfXdC3gS6PrfVRBW2fCKDq0yTvOnG_hxPki20js&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6p0Alp21R0vUnFPgW0DS_VUZn6NQWaryZgQLuwC_abuA&oe=6A038DF7","width":720,"height":1280},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQOVgzcIEzA4mgLtGXbI82OQ-1xdQLyk_LTI0u9f_j4e7x9VCB0Ttc278WgTRhFK_sxYLU354nA6lrgV7H3RblcDzIrO0vLJNuT7Q8w.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=oAjyIsn3S94Q7kNvwFP0lH7&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxMjkxMjMyOTEzMjE1ODY4LCJhc3NldF9hZ2VfZGF5cyI6MCwidmlfdXNlY2FzZV9pZCI6MTA4MjcsImR1cmF0aW9uX3MiOjI5LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=30ec3868ade9f63c&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9FNjQzODM3REZFMDE2MjAyRjg0MkVEN0NFNzNENTI4NV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzI5NDI3RTIxQ0QwRkY4MEVEM0Q5MkI4N0I2QUI0QkJDX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACb4xerx0pfLBBUCKAJDMywXQD3MzMzMzM0YEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZZapAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af41F9Ntr-FwYZ09SSoZ77RhlSqXGbgDRu35Bq5bzMCq5Q&oe=69FF76B4","width":null,"height":null}]},{"id":"3892188029536472553_63089586085","platform":"threads","url":"https://www.threads.com/@bleacherreport/post/DYD1GQjjI3p","code":"DYD1GQjjI3p","text":"Breaking: P. J. Tucker has announced his retirement from professional basketball after 20 years, including 14 seasons in the NBA 🚨\n\nTucker won a Championship with the Bucks in 2021 👏","createdAt":1778204991,"author":{"id":"63089586085","handle":"bleacherreport","displayName":"Bleacher Report","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/386879234_251903467381850_2728138300015557657_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby44MzQuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=cjh_00G8rrAQ7kNvwGhYmEH&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af5Mneir7muvI-LM98Pm7mrfmq4k64hvhwxhmzpV7nJQxg&oe=6A03902A&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@bleacherreport"},"metrics":{"likes":1660,"reposts":50,"quotes":8,"replies":24},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/689565484_18597862492003774_6362775889313707460_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzg5MjE4ODAxMDk5NzY1ODM1NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=mKJcG9RzJSwQ7kNvwFC_xXz&_nc_oc=Ado26tGCbWxeRZXR1uguicxQR_YoOq44Of0EvBzsnzLLxqSVOsXvvZBhBxa2ijc_Mck&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af55FxUM19tC3Xbx7gRS0d67LJxWmVaWnBPhbGudsU_dow&oe=6A03639C","width":1080,"height":1350},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/689139149_18597862513003774_3002282320556516330_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjE4ODAxMTY4NTUxNTQwMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=pbWJqjEo0n0Q7kNvwEPUrUm&_nc_oc=Adq0bzotwguBrcfjFe4OB5VKC7ly74Sb-qRZK0vfmfH-c2GE0VeReB29_M-AEv8lVq4&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6etI75DaccsKBq68mZLjXK6nOzBCkaPNvZJHTdq1nY8Q&oe=6A037E14","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQP45fqQGmIENnaLR_h_6onCDfKZQpU_2ucDJdLw9k86XE2OjAKUQ7Tle83TgI8B-MqOffGQgpTd1X4jJhpWSJrlKcyDMOSYrioCmLA.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=5Oh1vq0sLvAQ7kNvwEHKJ0A&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MzUwMzY2NTA5ODA4NiwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoxNCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=820e32cad626906b&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC84RTQxOTBFMzQwRkE1NDAyMTk4MjczNzM5MTBEMDM4RF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzE5NDRGMTVCQjIwRTVERUNDMTZFRjcwQkM4QTJGMUI2X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbMtYnuw-3oPxUCKAJDMywXQCzMzMzMzM0YEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5RKpA27OXaVZzgUBGDDknN3BEUoG7rs1TDs7srivVgYA&oe=69FF6A98","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/687186112_18597862501003774_1154318276740040244_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzg5MjE4ODAxMjU0OTUxNDc5Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMjk1OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=2qzkrYK_AagQ7kNvwHNX3Rc&_nc_oc=AdpLmO8gQsfFq_UXLN66-41UnBS_pq7tyWZGJwd8ZU0-jfb-_dKjXNGjON1TbwsN5ZE&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af57voEsCXVnFemvTo5BcFggfk9QNjNI7LtXl-XXAJ3kRA&oe=6A0374C9","width":2958,"height":3680}]},{"id":"3817101020598584113_66348895092","platform":"threads","url":"https://www.threads.com/@rubs.here/post/DT5ESeEj0Mx","code":"DT5ESeEj0Mx","text":"Safe place 🧘🏻‍♂️🏀\n#basketball #therapy #paris","createdAt":1769253924,"author":{"id":"66348895092","handle":"rubs.here","displayName":"Rub’s","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/486728789_655358724098232_4548379103087343246_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby45ODcuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=LO95SlPmpkoQ7kNvwHpnFH4&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af57TKHK-jsSzq1H2Tair6zuFNhaWy5_vvhjjenT9j0L3w&oe=6A03903D&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@rubs.here"},"metrics":{"likes":1803,"reposts":359,"quotes":14,"replies":4},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/622202209_915556407815147_1237446435054613739_n.jpg?stp=dst-jpegr_e15_tt6&_nc_cat=105&ig_cache_key=MzgxNzEwMTAyMDU5ODU4NDExMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLmhkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=EaJtV35VPiEQ7kNvwHz6hK5&_nc_oc=AdpFfY0bfw88aJqO_3VzCTRuxSErH8u-2qbL_XS0uZuJiyBV5vyG1vsdPCn8G2XMmcA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&se=-1&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7HfiItF5wkO5183KkSaRtFyHjjs6C_B_HRGieL5aut-A&oe=6A03832C","width":640,"height":360},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m69/AQNIcVHA-x_ye14XXvNTJwDopnxWy5DHoXKWG7Thht3IY-M1CcphuXsOPzO0LnspxPW7zh4-1UcfxrOIq5Rgq3UT.mp4?strext=1&_nc_cat=106&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=LLAfE3KZCIQQ7kNvwFCu9dQ&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy4xMDgwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTc5MjM2NDc3MTcyMTUwOTMsImFzc2V0X2FnZV9kYXlzIjoxMDMsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoxNCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=2285f8acc165e61b&_nc_vs=HBksFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HRDEtemlRTnhrRjdqT0lDQUw3VmdoUnFzdEIwYnNwVEFRQUYVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzgwNDhEMTg3Mjg0RUI2NTQ0RUY1NUIwODUxMzM0OTgyX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbqrZz0zd3WPxUCKAJDMywXQC1mZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6z4jyWYHXSbxB39mHzs2giUN0ShLJIbyJxgyJMzmuG8Q&oe=6A03856A","width":null,"height":null}]},{"id":"3825087068133707993_72180070416","platform":"threads","url":"https://www.threads.com/@mrusman2001/post/DUVcGwbDNDZ","code":"DUVcGwbDNDZ","text":"Basketball is not just a game, it’s a lifestyle. 🏀 #basketball #hoop #viralvideos #fyp #ɢᴏᴠɪʀᴀʟ","createdAt":1770205936,"author":{"id":"72180070416","handle":"mrusman2001","displayName":"DUNK CHAMPION","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/541582160_17875217514406417_7558240624737851365_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=tXCdOvUUir8Q7kNvwGIrC04&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af61BAuwtYk4-pepDMvfS4yQiYPQwAEz77WLvMSlaP_Wug&oe=6A037222&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@mrusman2001"},"metrics":{"likes":1441,"reposts":49,"quotes":2,"replies":3},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/628230742_1446560593744076_7897191618318413218_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ig_cache_key=MzgyNTA4NzA2ODEzMzcwNzk5Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=zUu2aMxFgyUQ7kNvwFHdGVx&_nc_oc=Adoot46trvFV8GHOPDCvYwRW_-LpIP7kb5r36rc4dRzk5Xdu9ICK0x0SsCRNkbvEqbw&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4DXfLmrZwV7lwirIP5RPhkCHdk4x0fEOGO-5GiHMYf6w&oe=6A03903D","width":640,"height":480},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQMRCsdqKoNBv3pGkZyo2w0SH0jp3jmi1HdJFxLOVr3zJOXQL0SL8B9IgyxbBjw4k99UJMQK_h2-HfpdkqRzuvKB12pU5mprzq44YVU.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=MCPryqQ2WDoQ7kNvwHQv3WN&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy45NjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzg5MjY5MjE4NzQwNjQxNywiYXNzZXRfYWdlX2RheXMiOjkyLCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzMsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=6955ac20212824a&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9EQzQzODhCM0YwOTNBNDg5N0Y5NDRBMjBGRjFGMDJBOV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzlBNENBRkFBNDE0ODdGMUUzODhGQ0IwMDkwQUU4Mzg2X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaigb-e4dPIPxUCKAJDMywXQEDMzMzMzM0YEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af4QMXEeZ398d2fd9T2PqmwCbMeqnAMZUn1FNGzb-Dw4IQ&oe=69FF6D80","width":null,"height":null}]},{"id":"3888581000339539141_63434337691","platform":"threads","url":"https://www.threads.com/@rossitakes/post/DX3A9E1kkTF","code":"DX3A9E1kkTF","text":"BTA #sixers #celtics #nba #basketball","createdAt":1777775002,"author":{"id":"63434337691","handle":"rossitakes","displayName":"Rossi","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/502049460_18504055597022248_3664021122314438158_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40NzkuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=uNluoy51wpIQ7kNvwEdEICA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af7a4a0NfgneskyO8I7QTtz1N9v5angVsnd1L1vxHOAVEQ&oe=6A03889D&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@rossitakes"},"metrics":{"likes":4834,"reposts":160,"quotes":15,"replies":265},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/685624616_1337149198474867_3095573946983997340_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=100&ig_cache_key=Mzg4ODU4MTAwMDMzOTUzOTE0MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=9rV-VhZQg0cQ7kNvwEH4dRD&_nc_oc=AdrpHhtYq6mH1Q6bDBoYYcVSKPkzO6QlkJnA0LvZXQAUm5Fei1_SzTnQI9l1Gv1W4Jw&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5NfXUQbAWNg_Yc4qNi_5Qfh1_A-iJU-5pZXUWOdwStuQ&oe=6A0394D7","width":640,"height":1136},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQPuzBhLJ2PhWjZoweJ6IRLCqI_9h-4qEsboPotjsQEdSCjfimgE8qupIi8E_UtaiwlZ-3LCr3N31pnnse9Z8cLoEIGu2xpz0qRk_vc.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=L8Q9Pzl2E5UQ7kNvwEEkUnc&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoyMTAyMDE1NTQzNzA0MjE2LCJhc3NldF9hZ2VfZGF5cyI6NSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjEyLCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=4757c51753a1f887&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8zNDQ5QkIwQUFBNTE2OUQ0N0IyMjEyNkE0MTM5MDhCMF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzlENDA4RENCNEM5N0Q5NEMzQkE2RTEwMEU0RkU0MEJGX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaw6tuctPG7BxUCKAJDMywXQClmZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af65E9De4oneA4hmz8WInzdWoVUQyqiC-sI-Cd3TFnLsqQ&oe=69FF7955","width":null,"height":null}]},{"id":"3892155767906614871_69387357181","platform":"threads","url":"https://www.threads.com/@sweetpicks_36/post/DYDtwykj75X","code":"DYDtwykj75X","text":"#rayban #playoffs #nba #basketball #fans","createdAt":1778201147,"author":{"id":"69387357181","handle":"sweetpicks_36","displayName":"Thomas J. Sweet","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/571831806_17898956034317182_1718750233491403943_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42ODkuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=bdhgo_-rrkgQ7kNvwFdt-DH&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af4jsqtt9bn7V1eXwL-07o3ebJQrNfZsfv_r1BYdh_1w4A&oe=6A0372C3&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@sweetpicks_36"},"metrics":{"likes":9,"reposts":0,"quotes":0,"replies":1},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/686490007_1154203233507096_6405362705998560231_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ig_cache_key=Mzg5MjE1NTc2NzkwNjYxNDg3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=JT32R8QuKMsQ7kNvwHxxZio&_nc_oc=Adqyx30ISAcZK43vqGqp1GBAKhBISjBPpilmTx0W_Wpqhi11aqEa5Tg4DtXH_JZPpWA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5bV5ct8bqkLhTr6e8UZYgcR0yykwG_-WAYf9bpeb76WA&oe=6A0370E8","width":640,"height":1136},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQN8dDOYZk3dUJZaZzqD1CBAOXYxe6WX9pLE8k7xhcYb41r8T9dGZ_rDhIXG_UPfzNKLN9QTeA4_2kGNBtn3d4Tqq3V3o71MurKKgms.mp4?_nc_cat=111&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=z8psWmsMjFIQ7kNvwGzJDg4&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjo5Nzk3NjU4MjQ3NTA1MTcsImFzc2V0X2FnZV9kYXlzIjowLCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NTgsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=6fe83c5c18870e07&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC82MTRFOEFFQUE5OTJDNTlENDY3NjU1M0Y0RDA1RDNBQl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0FFNDY4Mzc4MUZGQzhFRDlGNDM2OTA2OEM2ODcxNEJFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbqjpSf8MW9AxUCKAJDMywXQE2AAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6NTKjNMh58Pz68bTxDS66VxHvBil9mDtPdH2WbYZyyfA&oe=69FF78E8","width":null,"height":null}]},{"id":"3892199973379445107_63021391320","platform":"threads","url":"https://www.threads.com/@terrencewasfunny/post/DYD30EIERFz","code":"DYD30EIERFz","text":"These floppers have to be stopped omg","createdAt":1778206432,"author":{"id":"63021391320","handle":"terrencewasfunny","displayName":"TERRENCE MURPHY COMEDY","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358162424_622689519628965_5088758310562113463_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby43MTYuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=VvfknHmxRRYQ7kNvwGLZLdt&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af43hiwC_zZLkj7MJAoWyGSGs6M2I7rXtCV9kxpq7NxyhA&oe=6A03874D&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@terrencewasfunny"},"metrics":{"likes":2312,"reposts":89,"quotes":17,"replies":252},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/685759775_1610406376926094_7700448813201256260_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjE5OTk3MzM3OTQ0NTEwNw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=3ck4b98fJK4Q7kNvwFOPqYr&_nc_oc=Adr8hbDoi14tMLq0gUVYt8qZ0ewCn31i8b94VkwQEhWxkXZpkHdZ8nTEHLz0P7YAhWw&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af77xUOhAUJnsUw3zQjBVZ1KkowflVXj-awDvCq72Y9_7g&oe=6A0364E9","width":640,"height":510},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQNyftnYzHm6ovl6cgZoMhy7Azu5HfBwOyu8RRtTQ-GFqr7FW8upeLLoW6Afwx1ItOzjbYN42Sub_Azn6QvDDcEzFDceRaVDIsZhQvE.mp4?_nc_cat=111&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=BzbfppLbLFQQ7kNvwF3mW-G&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy45MDAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2NzM3OTQyODEwMzMyMSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTY0LCJkdXJhdGlvbl9zIjozMiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=c44ed36e57d902bd&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9CRjREQTQ2QzYxMTZGRjhDNzhBQjBGQTJEOUQxQUY5Nl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzQ0NDkxNTFDMzE5RThDRkE4QkIxOUZEQUNCMDNFNUJFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACay0trFkM_qPxUCKAJDMywXQEAMzMzMzM0YEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeieAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5aaMiCqGNbG0eAe3E_0Ybww2gPBsv7xY65u0-ZJmc2zg&oe=69FF7ED9","width":null,"height":null}]},{"id":"3892222953778033644_63473051966","platform":"threads","url":"https://www.threads.com/@mkiatipis/post/DYD9CeSj7Ps","code":"DYD9CeSj7Ps","text":"Paris old head showed me his best tricks from the 90s in this 1v1😄\n\n#reels #basketball #streetball #ballislife #dunk","createdAt":1778209157,"author":{"id":"63473051966","handle":"mkiatipis","displayName":"Matt Kiatipis","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/476877113_633255625830393_5376835760457944650_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=P-3GQWUUY4oQ7kNvwH-9ZBs&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af7rP3QljwHO8J7gKnMbtROR7VPEuIDWNvJ440vMv_5LUQ&oe=6A037ED2&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@mkiatipis"},"metrics":{"likes":103,"reposts":1,"quotes":0,"replies":1},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/685411835_18589609801040386_6009473623047156577_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjIyMjk1Mzc3ODAzMzY0NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTI4NC5zZHIudmlkZW9fZGVmYXVsdF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=vzVMCNfLNCMQ7kNvwFbABDS&_nc_oc=AdrXlGpY_Sn2-KAU0yULfOWKokFOOOBwR3Lo8xi3UGCUSurORbQqFPv0yxMUBAecyDg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7sa4BcZAIpEVVYH40TtxG_yMca6kLJaj2aibDKZlmayQ&oe=6A037BD0","width":1284,"height":2283},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQPmPYGVKq7oVlB1uiYKU9gF54omuNY9XpiCcGdAdeEdTmyJtQc-90fA5fjxyEEAc_ZGUj0LZV6ssF9ytgWJClkXRYxSDIoQOdeKorU.mp4?_nc_cat=1&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=5KRUdf8BgHkQ7kNvwF472so&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxMDA5ODUzMzc4MTM4Mjc5LCJhc3NldF9hZ2VfZGF5cyI6MCwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjE3OSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=d657cb927115e505&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8zMzQ5RkM0QTBGQzJGMzI4NjJCMjk1RTkzQjQ2QzVCQl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzA5NEM0MTgwNTQyMjI5NDM0QUIyOTNFNDQwNkMzQjk0X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbOwoj-mZ3LAxUCKAJDMywXQGZu6XjU_fQYEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5ylhkGKJDaW4fKXAjHvVN1r8fgNFwSuQnvsCu9aNu7Gg&oe=69FF830A","width":null,"height":null}]},{"id":"3891925213475096622_63067282467","platform":"threads","url":"https://www.threads.com/@spurs/post/DYC5VyBkcgu","code":"DYC5VyBkcgu","text":"Team basketball. Team win. 📊","createdAt":1778173661,"author":{"id":"63067282467","handle":"spurs","displayName":"San Antonio Spurs","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358071567_582947840658888_5690726173760542838_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=85xajm_n164Q7kNvwH3Lxtu&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af6z1D011yGoj9ZSCMdtKX21NTd3hC5MP7Hp6eWjd-KRhw&oe=6A038E4A&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@spurs"},"metrics":{"likes":146,"reposts":1,"quotes":0,"replies":1},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/687189420_18585537115004556_9170395282555737979_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzg5MTkyNTE4NDIwNzIwNTEwOA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=T38Qt13qib0Q7kNvwEM341B&_nc_oc=AdoXzW4vxbIn4lP-fy5C4qCdzCznjITgJ5RlX3_mxcYWYv8494nwhCi9wpoCzpySnm0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5-aD6BDY-RJ2ZW-vdm5ZDvH2t8KIIix7UEuMD3Jt0FUA&oe=6A036C88","width":1080,"height":1350},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/689055998_18585537127004556_276236535987597713_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=106&ig_cache_key=Mzg5MTkyNTE4NDM3NTAyNzU5Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=WfBsTx4XDUwQ7kNvwEPXXxI&_nc_oc=Adqy9wPOyM7GFLurf8MCd5pVeg1QwJrzyE4OuFUhr9XQx0Mr15quvhW737jtvu1-6Io&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5mHPJhBhyxrbfBuI0jdyN1bwEdQOu0n64YUJTRED2GXQ&oe=6A0362BC","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQOGab2yFlK26GOwKXbQcQj8kIhjMbToDQgqq2P6ZGsTbq7IoxAj0yXlPWBSdzFrSUgfRD1Z7VgJmI8AHNoGzMTip-itlxN7HoRkfIk.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=g8vxJ7yJKTQQ7kNvwFyFB8S&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzE3MTA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjo1LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=11173ce8168b85e3&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9GMzQ3REVGMEU0NUY0MzIzMzBGMzg0MjAxMDlFRkJCRl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0JGNEQ5QUE0RjU4OEJFNzZFMDE4NDU2RTM0REVBQUE3X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIrd_1k9HnPxUCKAJDMywXQBcQYk3S8aoYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5MNC1NA8BPumyCMmjljs61TvWoUrHjU-BplvDFMqyPkA&oe=69FF6AF1","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/688208194_18585537151004556_5478567911254729077_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ig_cache_key=Mzg5MTkyNTE4NTIzOTAyMjM3Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=3YJOPt0R3DYQ7kNvwGx5X4l&_nc_oc=AdrBJMj6tGYVn7GUxlQUAxd3_w095TX5sdUY_95utpYhzGg8wc5eZZ0H5GeSRZkqtsg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af69vJBAJtxG2UxBaXS_Oj3K8GAER_lUvrb-PoQdcAyM9A&oe=6A037D42","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQMIzJYR1RrHgk9w4IJ-ZMaQ6n2LqxOvZv8wljtLHCD1LAbiCVRiipTfNR8srIw_l9sbhXecXNy6gTfv1TE-OOJfv-VNkhjVkNb6eC4.mp4?_nc_cat=109&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=v0e-mYcp-F8Q7kNvwEfrHwS&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzIwMTA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjo4LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=3cdbcd19aa894b2d&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9ERTRGMzBENDlDM0Q1MTQyRjE4NDZFNTg1ODAwQ0FCNV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzQ0NERGMjlENEYzQTJFQkVGQjBFOUM2QkVFMzQ1OEFFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIu62SlNHnPxUCKAJDMywXQCDMzMzMzM0YEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&_nc_zt=28&oh=00_Af6v_Nc_v8YfMgUmhQFX4sBNBTVughQc9ktJYBiDzaQYXQ&oe=69FF79C7","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686901637_18585537139004556_7034591267278720513_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ig_cache_key=Mzg5MTkyNTE4NDI3NDMzMzA0MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=uaJs9PgxxT4Q7kNvwEQbA01&_nc_oc=Adpnx5U-CleC5_thbPyJKBDLAi5BjHymeX0KFACIjOUFwlPV0qNxPLCgKgeFGvsDB3g&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7L9-fcxkU3cJ0lrE-HAlZXDxQ5GTnzviBnfENLt0qh2g&oe=6A035F10","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQOLRpS2NrQvaFaVJgbxQHRJ1UhxsSOYA2_p-vysvTbIUJd7kIQ-Xkll2SwNOAUPWm7RYO6QfVFtOuthoMtDASAdz1IOsHHaNw5vaUQ.mp4?_nc_cat=109&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=o5TyuukuK68Q7kNvwGjvOMe&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzE5NTA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjo2LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=5052f3eed95dac71&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC8xNTQzNDdGNjg0Q0RERUUwRkZCMzhBMzE2QzBERDNCRl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzIzNEI1NEZDN0U0QUQ3REVEQTg2NERCOUZGQ0NCODhDX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIhdGMlNHnPxUCKAJDMywXQBhU_fO2RaIYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af7PfjA8mirT1KqjNRrOhRug0ihx7qbTUKV-vUBhiOxcWQ&oe=69FF932F","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/689051218_18585537238004556_7716128176178116693_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ig_cache_key=Mzg5MTkyNTE4NTM2NDg3MDg1Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=4sZRxpz_MqAQ7kNvwEYKHwo&_nc_oc=AdrXp0FAvnw8FmGOPJ_fuRL9PgwW-j_X3lKP-bWcJRt8KCEwZqwzm2SY5_a8zO6rmuA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4ZHMt1kUjLK_rvzNNheZbgTj_Mi4FBsXqY9bM_GqWyvg&oe=6A03728D","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQMZHugy5xIF9PUwlbcY88gotaVCI1zQagZ8plR-XfXeLrn4EOjysAl7XfPVnvJinQswpNRcJhBZ7UY-d0Z5GI-7jalI3vi4oExyiHA.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=7DWxwF_ICD8Q7kNvwHbBaCj&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzIxMzA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoxOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=a49a8e43e651f6fa&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC80RDQ4MTc3M0MxQjRGNTYxNUJENzk3REU5NTZCNEM5OF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzFDNDk2OEE0OTUyRTVGQUUxQUY1QUUzODJBNzFGNzhDX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIp-adlNHnPxUCKAJDMywXQDKAAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af79ngOKJxQ7o7bFVFtlAZ7Ev4WhuEjxxoFu9AH4ABlKXw&oe=69FF7EE9","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/689015860_18585537163004556_4533133049856490180_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ig_cache_key=Mzg5MTkyNTE4NDY1MTgzNjA3Ng%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=tW9JPbwZgdgQ7kNvwEGpJ-l&_nc_oc=Adpsclluv9452BxYbo5k8H1GCYUVzTYUWi0dJDSp-qWRu9jXAOz2y3A8SCmFPVOLcVg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7noi8KT00BrzZAm4uyOVUKArCNn0D2OvbTZyY3Z2LoGg&oe=6A03731E","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQOCH89ykFYZslIsT1GA3ScmniL_Y3U7mCAH-r-WlOjlIXijD5I83l2BNuB6nmbc66ZJ-DAa6CdoPcMtDj2s9bLqH5DL7k6AC_JjNWw.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=ijpV9n4MuXQQ7kNvwHMQmGH&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzE5MjA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoxMCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=ce5f274f4afdf0b7&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC84MzQxNzBCRTkwMkMwNUQzQ0UwQzI5NUU5NTYzNkQ4Q192aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzdBNDIwMjA1NzgxRkVGQTdCM0NGRDg0MEFFM0Q4M0E4X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbI6uKJlNHnPxUCKAJDMywXQCYAAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5pl3dV8Mx0clBhmG5py3pj2N9stF_C952vNOAs8CAyNA&oe=69FF8A78","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686928602_18585537184004556_7920086740128988714_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=108&ig_cache_key=Mzg5MTkyNTE4NDI4MjY5NjU4Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=b8tNG8-0OzgQ7kNvwEqK20c&_nc_oc=Adr034xGxHO2Lpa2_JSrjjxRV2iArw84Y1RS3zGtCHALukqZxWOcdoQsKU0gMtP5vdg&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7SBvraUvblAnNP0J2PRvYE8JYpeRUnRj9nBIcgYpObQA&oe=6A037451","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQN2iw-kKvDsrH3Dxq-eqgQ3j67YS5wlzq6tC5FIIS9t2pl0siQpE3nG1-Vr3UP9djW9JaF2bvkb82-be3Rzg0g5uHoKkBlliWo3ubc.mp4?_nc_cat=111&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=hxL4KBoLZh0Q7kNvwGmLglZ&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzM5NjA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjo4LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=d84bc542333dc802&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC8zQzQxMjVDOTU5NTcxMjk4NEVFMDBDRTUxODBCOTQ5M192aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0RBNDM2QTFBNzkzRjcwMEUzMDlFMkU2N0YzMjJBOUFDX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIlqnMldHnPxUCKAJDMywXQCFU_fO2RaIYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af402dkqTS_HBVqb2zonAbPincT_-CRQ3u1lUygGvMNwgw&oe=69FF90CD","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/690148541_18585537250004556_1319403800519385347_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=100&ig_cache_key=Mzg5MTkyNTE4NDIxNTU4NzQxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=rd74A5_6VnEQ7kNvwG3Y0DR&_nc_oc=AdptskiunUsPaZiajKzu6YQxoACeWdKV9r3ZZuOqia4MzodKwpavy0rnblw15avHC2g&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6p-YU554j6_bNVXgP48wCLmMcmffhH2JznBsI5cOdUVQ&oe=6A037209","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQOoV64qV7EVJHPpDcAxV6mMElx2Wr0pP1YXfA_x6GQScb5yfZyi5hMWFAMzF1AhXlDDMGpVgrx-JdoDHyiK5mKAq5zRgRzVBkE_ktY.mp4?_nc_cat=100&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=W8d9YE4xxxwQ7kNvwFyHeOv&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MDgxNzQyOTA5ODQ2OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoxMCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=c7fabc3a2e8ae313&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9FNTRFQTVEQjhFQUJGNTQ3QkFFODMzMzk1MjEzNTI5MF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzc3NDI3NTlGNjYzRUM5NDU2REY2QzMyNTU2NTBEREE2X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbIv-XrldHnPxUCKAJDMywXQCUQ5WBBiTcYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6SW9T7JZf0oh24bIL4zuYupi3Yv0_4NK4afHwS6unjXQ&oe=69FF9358","width":null,"height":null}]},{"id":"3828762409028366442_63278495843","platform":"threads","url":"https://www.threads.com/@jwitdashifts15/post/DUifyAXgTBq","code":"DUifyAXgTBq","text":"I just love basketball despite being bad at it.","createdAt":1770644070,"author":{"id":"63278495843","handle":"jwitdashifts15","displayName":"Jhanwelle Mondejar","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/558935821_17926737216111844_8038272211664340306_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=-M8cqwGLIz8Q7kNvwGJrb8j&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af7I5nfUadoxmeuWm9i_7D5Hn_0R7obM8Ca5un44rphsZw&oe=6A0378F2&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@jwitdashifts15"},"metrics":{"likes":350,"reposts":121,"quotes":10,"replies":2},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/629440524_1223898283051007_4255497541425221836_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=110&ig_cache_key=MzgyODc2MjQwOTAyODM2NjQ0Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=tjko7-vjFhgQ7kNvwHgqTKO&_nc_oc=Adq6Lxzhfdo9Sx2AZfA4YO1WtQAE_9NZU9Ee3eO49rUl8pSczDq0uq4xck0gIVdv5Nk&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af79z_KE9ox6Z628UqayEa4TRJJnCzMQEDIIgBFPYZjQMQ&oe=6A0375A8","width":640,"height":640},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m69/AQMt1RmzRBnXLpwIOPLsM94-C14z7iB5sO9_8jhjAkYrGG3Q5GShQ6pvUyqphp4PkR2LywtOTQBX6Rn6dcQJHRmg.mp4?strext=1&_nc_cat=106&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=IXG5J8tbFvMQ7kNvwEQHFSg&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk0MzA3NTY2MzExMTg0NCwiYXNzZXRfYWdlX2RheXMiOjg3LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=85d07465796e725f&_nc_vs=HBksFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HQXVGbGlXN0pVcmQ0eDhGQUFWbDdBSnpXWGdKYnNwVEFRQUYVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzQ5NERERUE5MTM2MTZDODAwOTM3MkQ5MTYwQkYyODhDX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbImp-xu8jfPxUCKAJDMywXQDpmZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAdeoHZeadAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af4Fu72DXz0kxsBWjhCbhNfLz0lQAVGtDjDsXHoWHzy90g&oe=6A0368B2","width":null,"height":null}]},{"id":"3892189736509487309_63304219056","platform":"threads","url":"https://www.threads.com/@justqua/post/DYD1fGTEbjN","code":"DYD1fGTEbjN","text":"20pts in a half \n21pts in a quarter \nOnly duo in basketball better than them is the ball and the hoop \n1A & 1B","createdAt":1778205195,"author":{"id":"63304219056","handle":"justqua","displayName":"Qua","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/381651063_1028370771950386_3911329295616209029_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=fqgSsq5OZPAQ7kNvwFQm751&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af6NCCgyIFapqHGNyWEg18neFT3JxHIbXtSbNBULQQKjDA&oe=6A038938&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@justqua"},"metrics":{"likes":259,"reposts":11,"quotes":0,"replies":10},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/691892341_17967198528107057_742212625434806416_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzg5MjE4OTczNjUwOTQ4NzMwOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTE3OS5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=WrykexOxkZcQ7kNvwG3MiJP&_nc_oc=Adr7aenryoFe4H0edXF-oFM2WGYuv6U2YFYyJGyll3Hpqjm6dCopgVQoWnW-LBEHVBo&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7HsNsOgZayzyxSszWkalco-G3tkrRzIJxhako5evNMmg&oe=6A036DBA","width":1179,"height":1179}]},{"id":"3760004062017002447_63534262641","platform":"threads","url":"https://www.threads.com/@mamayo75/post/DQuN8XmjJvP","code":"DQuN8XmjJvP","text":"Assistaholic pt 2🤣 #basketball","createdAt":1762447435,"author":{"id":"63534262641","handle":"mamayo75","displayName":"Old Mamayo","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/410630080_1556977594706612_6562077087636639544_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=m36nABKTv74Q7kNvwFluqOR&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af7t5mf8jvND3PzetdcmpjREUxr19cb1Rqp5xoxPhgxqQg&oe=6A038DD3&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@mamayo75"},"metrics":{"likes":3693,"reposts":201,"quotes":10,"replies":45},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/573371530_2029835431111811_263435589256726797_n.jpg?stp=dst-jpegr_e15_tt6&_nc_cat=107&ig_cache_key=Mzc2MDAwNDA2MjAxNzAwMjQ0Nw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLmhkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=oz7SQOozN6IQ7kNvwGJrdLU&_nc_oc=AdqI890kTiraJrU8TJ4ZB9qGv0Q_VMVaI2T4NCs_2HFLYa_m1RMQqGk3-yRiu0Y0Mxo&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&se=-1&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7yQF3A3ymnbdxw8BnH5NPhi5TNJJNGic5ApIDpdK42xg&oe=6A0394A7","width":640,"height":1136},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQOqPeeNyWRD52rqPETBOOYv2R2MWeczCW-mT1Ff2RVjDbrPQCexHYSRSZbRY1Z6ult5hh8htdpIYhBp7n9-sTKP9VGKXuIp9zZ2amw.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=82anpQiHV3EQ7kNvwFLTkXw&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjo3MTE3ODI0MDgwNjA3NjYsImFzc2V0X2FnZV9kYXlzIjoxODIsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoyMSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=d4a41f4ae3a7b57f&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC80NjRBRTdDM0VEMkRFQ0FFNjQ4RDg4NTZGOUQ1OTc5RF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYR2lnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xNjIwMTcxODEyMjg2MjUxXzEzNTU0MzM5NTg0NzE1MDAyNDIubXA0FQICyAESACgAGAAbAogHdXNlX29pbAExEnByb2dyZXNzaXZlX3JlY2lwZQExFQAAJrz9t5mY18MCFQIoAkMzLBdANUzMzMzMzRgSZGFzaF9iYXNlbGluZV8xX3YxEQB16gdl5p0BAA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6DfBHoBBG2MGg2HRSTr5li6FyzFdkt0hHXiJxu_TJTsw&oe=69FF6F7D","width":null,"height":null}]},{"id":"3892239269922534158_64100560653","platform":"threads","url":"https://www.threads.com/@sh398697/post/DYEAv54jvMO","code":"DYEAv54jvMO","text":"This foul on Reaves by SGA had me like 🫣😵🤬","createdAt":1778211109,"author":{"id":"64100560653","handle":"sh398697","displayName":null,"avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/654606355_17945524002136654_327201150103734840_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby45MzQuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=47_DIpK6XFkQ7kNvwEdUTPw&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af4htpvrVskI0UHY2Gx0rGarbgiN0uQQuMd6YmIveD7IiA&oe=6A038A4F&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@sh398697"},"metrics":{"likes":233,"reposts":10,"quotes":4,"replies":55},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/687416403_1503147954531539_895422189815254655_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjIzOTI2OTkyMjUzNDE1OA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuNjQwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=3aow8WncseEQ7kNvwHcs6mk&_nc_oc=AdovOX5zKtxGNgXrqqMUem-quV7XwnJz5FNha2jhWN1k_x_oP7FyLlMoPRTr8cHNwa0&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6JOIKmBkC4nglHKpvtaPUBKB0FTg5hjcJtORELhTZlbA&oe=6A039555","width":640,"height":800},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQO2wNHFX2ECqkaI6I5xc826UV80fzHHhS5vwZp_lohRKAWLMl_xl2P50GOTdqHW6Un3YTSKt1qMUFAlzo1GfFwaopeY73oKEtB_koM.mp4?_nc_cat=109&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=knPgESr1mgYQ7kNvwE8WdIj&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uRkVFRC5DMy42ODguZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk1MjkwNTQ5NjEzNjY1NCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTY0LCJkdXJhdGlvbl9zIjo1LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=8fc49f3514eed017&_nc_vs=HBkcFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC82NDQ2NzY1RkIzODQ2MTNCMEU2QjM0NjIwRDM4ODFBNF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmnK_ErNGE5D8VAigCQzMsF0AUZmZmZmZmGBJkYXNoX2Jhc2VsaW5lXzFfdjERAHXqB2XongEA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5Fg-KfDqI_kDi64Z-baDmLtW3-RS1_8CUIDG2o8d8Ehg&oe=69FF6DF3","width":null,"height":null}]},{"id":"3892162660414889459_63304219056","platform":"threads","url":"https://www.threads.com/@justqua/post/DYDvVFuEZ3z","code":"DYDvVFuEZ3z","text":"That’s 3 of a kind for the Las Vegas ▓ Aces \nWhat a ride. This documentary made me even more excited for ring night. \nAs fans we gotta remember these ladies ARE MORE THAN BASKETBALL PLAYERS. THEY’RE HUMAN BEINGS WITH REAL FEELINGS. REMEMBER THAT WHEN Y’ALL DECIDE TO BE ASSHOLES.","createdAt":1778201967,"author":{"id":"63304219056","handle":"justqua","displayName":"Qua","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/381651063_1028370771950386_3911329295616209029_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=fqgSsq5OZPAQ7kNvwFQm751&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af6NCCgyIFapqHGNyWEg18neFT3JxHIbXtSbNBULQQKjDA&oe=6A038938&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@justqua"},"metrics":{"likes":172,"reposts":11,"quotes":0,"replies":2},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686967113_17967189777107057_4211894484631366307_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzg5MjE2MjY2MDQxNDg4OTQ1OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTE4OC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=cT6OjtdSWfMQ7kNvwFwm-BZ&_nc_oc=AdpfVAGrJXbcL59u6Ahc0A5_EvyUyvaypkdM2E7FOEW-byYcZnSs0pnubkt-sqUENdY&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7wo3jv6GMW3Y2zK5CCrKlioFyLsyInIwix1qZmU_lw1g&oe=6A035F02","width":1188,"height":950}]},{"id":"3892263882483361469_63211174898","platform":"threads","url":"https://www.threads.com/@espn/post/DYEGWEHgOa9","code":"DYEGWEHgOa9","text":"THE REIGNING CHAMPS ARE 6-0 IN THE PLAYOFFS SO FAR 😳\n\nSHAI, JMAC & OKC ARE HOOPIN’‼️","createdAt":1778214033,"author":{"id":"63211174898","handle":"espn","displayName":"ESPN","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/357772786_831525745067504_4117592801462497812_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zNjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=fEaFVY1DalYQ7kNvwEWdhR6&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af7a3Niz1WqxZMIqxv-cSgL1R2RWc5B2Jrg5Ux_PRXWkxA&oe=6A038538&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@espn"},"metrics":{"likes":228,"reposts":11,"quotes":3,"replies":66},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/671839452_18597035791040208_1933661332170783215_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1NTEwMjg5ODg0NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTMyMC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=Q0HpdGTuThMQ7kNvwGGEsR-&_nc_oc=AdrRzQV7kuTc1VYDcppX99g3hzbNcTEwwh6QSw_JIikxDZyHXLzaV4PXzpdmoiAgalo&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7tM_UVFeaFFjLrwPMQyksJTWIwZPzUoguqwbSo8iIjwQ&oe=6A03947D","width":1320,"height":1649},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686518755_18597036031040208_599679523812898154_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1Mzg2MTM5MjkxMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=dJvPEQ5LQfIQ7kNvwEQ3MGK&_nc_oc=AdrVPi3JKBQHrm-mF1HSrpx3lm431MJyFGz5SCFxJOCy9DvFkVqHdFLQ0QKyWlL5CzY&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af4x1xYNsruHKb8kwL8HkGe4icBMnwWYy8pR3vjzrvmnYw&oe=6A03845C","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQNpzfQktHed3br3kgMCxAar0ivfipMK2gguyts5NbVaCPgVLUEc32WJCSjSm0gYK1JmPwfL3vCT9PaBbmh8ojxj9EZD61HyDOFXzj0.mp4?_nc_cat=106&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=CDlMnOEt154Q7kNvwE0QpNy&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MzQyOTg2MjExMDg5OSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoyNSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=bb65c13759a6b718&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC8wMTRDRkZENEYzNTQyNzFDNEU4QjFENjEzQzZFRjg5Nl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0VBNEVDNkMwMDZDNzBBODExOTg4MTE5OTlCMDA2RUI1X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbm2of-nenoPxUCKAJDMywXQDlmZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6uP_vGw74A1WeISfwNCKHnEd-9rx6bKHlYMuJEUmP2IA&oe=69FF895E","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/695011592_18597035794040208_5572476149747222704_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1NTYyMzAyOTQ0NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=gDnkQd1grdQQ7kNvwFj83kG&_nc_oc=AdqrylLnpq1WxqpNkVthAneOsP0-LL6NW_f9uLohvlG1Otfd0ET2N7A9WJAZ5_w120Y&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7Bhw1iGjsU5pAzxNNgWYIVTaPVJACCAoqNh96Enersnw&oe=6A037481","width":1080,"height":1350},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686885793_18597035803040208_3500949174570492705_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1NDIxMzcxOTQ5OQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=4NBReBolWBoQ7kNvwE5tFG4&_nc_oc=AdqfYShUn4AyvZ7GxrokfoVzPL0jtNo1-_4qFUFpk1eO9J-GktHE5hyWoMmdXZBRq_U&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7PiorjqM3rExUBR5OdnnAYGppesXMaQ-I8WAGvyfSVvA&oe=6A0376AD","width":1080,"height":1350},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/687186112_18597036043040208_646998955162180847_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1NDQ3Mzc3NjI3Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=ZhecOmXMuqkQ7kNvwE_mf2y&_nc_oc=Adr6LNwPHrLOjWESGgM7PUJkenvxfAjOgcfKVyYr9QxnZSkteC9AV3zqQDW_EoZCGzo&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6BU2s1eVe6GiEUWscdkO-RZzDADH9GGYJx1bHLUBkbmg&oe=6A0394F9","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQO4bH-VhvjnJ0oAVjT6U3FPDHnOBAWGKsiG3e7DhCpV5hOc7WE-Q4I5wmJgNAReK5oDNHvqbv6XLc8vtH9qfo6qCRyVSMYHirkNNuw.mp4?_nc_cat=100&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=rFMmL8q4mC4Q7kNvwG7Dy1w&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MzQyOTg4MDExMDg5OSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjoxMSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=bead10e4f5641add&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9GMjQ0RTJEMkQ1Qjk2OTRENDEyQzJERDYzOTFDQzRBNl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzRBNDc4REI2RTU1RDNBNjY1NjdDMTA1RURBNTdCMkI3X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbm_JyPnunoPxUCKAJDMywXQCZ3S8an754YEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6zMmBi6_Ht2NPf5bSdSQZnh4K1FS5EIt4s0dxhPanZKA&oe=69FF77B8","width":null,"height":null},{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686318862_18597036052040208_1898939490791471410_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ig_cache_key=Mzg5MjI2Mzg1Mzc0Mzk0NzM5MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuNzIwLnNkci52aWRlb19kZWZhdWx0X2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=KwDH53XK3YcQ7kNvwHkkGTS&_nc_oc=AdpPLezxCQ-d3kbly_jnnZM6ElahivIbKfiN-kEY6qlAkAQoXUZqXO2u-dsM4qqVbyI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af5EirRwbTvGYfZmmRwMkpZ-URSxYHF4ZmlxOezzxl4QIQ&oe=6A03938A","width":720,"height":900},{"type":"video","url":"https://scontent-bos5-1.cdninstagram.com/o1/v/t16/f2/m84/AQM6xwgKcGrMFCAoT9_BfgkgvQ6lizQhbIwwzzBYP5h-ar6O6wYVXO6cUjXgPTqbzTYQVs8V_GbQXjjH1l5ZoaoWdBQl1d3jCEQ5_6Q.mp4?_nc_cat=108&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=fK08ZN_EmvcQ7kNvwGAJKtx&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0FST1VTRUxfSVRFTS5DMy43MjAuZGFzaF9iYXNlbGluZV8xX3YxIiwieHB2X2Fzc2V0X2lkIjoxNzk2MzQyOTkxMzExMDg5OSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTQ2LCJkdXJhdGlvbl9zIjo3LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=fe770fc74ce75ade&_nc_vs=HBksFQIYTGlnX2JhY2tmaWxsX3RpbWVsaW5lX3ZvZC9BMTQ1MjJFNzdCRTIxOEExQUU4NUVERURBRjRDNzJBQl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzNGNDU3Mzk3RkM1NjgzRTEwN0M4NDc1MjM5NzAzMkE3X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbmpdmununoPxUCKAJDMywXQB9U_fO2RaIYEmRhc2hfYmFzZWxpbmVfMV92MREAde4HZcSeAQA&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5vSS8eWqe1kL1iBBfFIXvwcu4MPh3mORxWWblmCr62sA&oe=69FF7F70","width":null,"height":null}]},{"id":"3892239384058751450_63482698288","platform":"threads","url":"https://www.threads.com/@kennychaojr/post/DYEAxkLm2na","code":"DYEAxkLm2na","text":"Jake Laravia is the worst basketball play ever","createdAt":1778211113,"author":{"id":"63482698288","handle":"kennychaojr","displayName":"Kenny Chao","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/591680159_18309067354265019_5620351862389416035_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=8LAI6g-PcN4Q7kNvwGoK65Z&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af61Qc1AGuPYelbsKZrU_pSgPtr5XhhHUxXJWyFmRvzRug&oe=6A038220&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@kennychaojr"},"metrics":{"likes":62,"reposts":3,"quotes":1,"replies":17},"media":[]},{"id":"3891827513890800393_70960627396","platform":"threads","url":"https://www.threads.com/@andre.barker39/post/DYCjIEMjYMJ","code":"DYCjIEMjYMJ","text":"Stephen A. Smith just dropped a fact on First Take that every real basketball fan needs to hear. Even as LeBron James leads the Lakers through this 2026 playoff run against the top seeded OKC Thunder, the GOAT debate remains closed. ​LeBron’s longevity is legendary, averaging 20.9 PPG at age 41 in his 23rd season is unheard of. But being a great compiler isn't the same as being the GOAT. MJ didn't just play the game, he put his defenders through a mental siege. ​","createdAt":1778162014,"author":{"id":"70960627396","handle":"andre.barker39","displayName":"Humbledre","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/630569795_17901846162363397_3757104897567290169_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=08oC-JJVtwwQ7kNvwFZv7xf&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af6fcT-Ludm1d14ejsMqrfYUvbb3wmBqHMcQavfsS8sgyA&oe=6A037649&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@andre.barker39"},"metrics":{"likes":80,"reposts":2,"quotes":1,"replies":150},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/686205095_17915759814363397_3085654901285515793_n.webp?_nc_cat=110&ig_cache_key=Mzg5MTgyNzUxMzg5MDgwMDM5Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=vXj4yMWq_qsQ7kNvwF7HzZa&_nc_oc=AdqfFqPfoJXbEEng8Ry-dyD0p6gkmFz-0vviTQ2seOKyZoaTEc0pW5vXLa3vIhQOd_Q&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af6P144kArzotfQvMB6Bxk7ju_61_hJSlSQOGGZlSkBfVw&oe=6A036452","width":1080,"height":1350}]},{"id":"3892030634966221888_66334678295","platform":"threads","url":"https://www.threads.com/@_jmariee23_/post/DYDRT3cGYRA","code":"DYDRT3cGYRA","text":"No one can tell me a thing about this team! It’s bigger than basketball. Lyss made me tear up. 🫶🏾","createdAt":1778186228,"author":{"id":"66334678295","handle":"_jmariee23_","displayName":"Founder of Carrie J LLC","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/662502039_17935217628214296_5409650434274472691_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=D10cvhl16hQQ7kNvwHoOkHm&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af77IkIgUyAwCh6J9M9KdIfBJWWzijZwLpA3iB8Nrciwbw&oe=6A03624A&_nc_sid=79ca67","verified":false,"privateAccount":false,"profileUrl":"https://www.threads.net/@_jmariee23_"},"metrics":{"likes":125,"reposts":5,"quotes":0,"replies":3},"media":[]},{"id":"3891890921046585136_69422865658","platform":"threads","url":"https://www.threads.com/@sportssteady/post/DYCxiwtjK8w","code":"DYCxiwtjK8w","text":"Angel Reese is going viral for her comments on voting rights.\n\nWNBAThreads","createdAt":1778169637,"author":{"id":"69422865658","handle":"sportssteady","displayName":"SportsSteady","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/434147348_388467240615488_2599573898345230423_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zMjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gHJ9a89wlmQxmDl7PudFztnCDvGWJpPQRRMkH7Y3mLyC0ZD-lOvykp_VGi0P3H2TDM&_nc_ohc=uWdwko1vGAIQ7kNvwGH-F0r&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&edm=AG_HAEwBAAAA&ccb=7-5&oh=00_Af6qC4WgOyu3ZpsPAjecKZftbw9FyDvSXNnR7wLR6gZ0cg&oe=6A0384A0&_nc_sid=79ca67","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@sportssteady"},"metrics":{"likes":11460,"reposts":790,"quotes":43,"replies":447},"media":[{"type":"image","url":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-15/685374860_17926225728313659_1712315858763655783_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzg5MTg5MDkyMTA0NjU4NTEzNg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=KU01qaQpxD4Q7kNvwGS9O4-&_nc_oc=AdrXoqIzu6R9cjzX2SFvCE1Cvu4eRxzf2KzTRtGE3GGtygvMhhbc05rmsQg_38WW0_M&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=ooLY48RFIMkOJj-D6zb8hg&_nc_ss=7a22e&oh=00_Af7xM4wKfEP0lAI4fW6lSzt3BSaBS1WYT1vmXpkC8qLsYw&oe=6A037DAF","width":1080,"height":1350}]}],"totalResults":20},"meta":{"requestId":"req_dd4e9b8c-57c3-4f8f-98d1-b1ad3bb988f5","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"socialfetch_fixture_no_results_000000","totalResults":0,"posts":[]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"trimmed":{"value":{"data":{"query":"basketball","totalResults":1,"posts":[{"id":"3876725847588352169_63251387228","platform":"threads","url":"https://www.threads.net/@courtinsights/post/DXM5Z5dFDCp","code":"DXM5Z5dFDCp","text":"More basketball highlights from tonight's game.","createdAt":1776361755,"author":{"id":"63251387228","handle":"courtinsights","displayName":"Court Insights","avatarUrl":"https://example.com/avatar.jpg","verified":true,"privateAccount":false,"profileUrl":"https://www.threads.net/@courtinsights"},"metrics":{"likes":9041,"reposts":null,"quotes":null,"replies":null},"media":[]}]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/posts":{"get":{"tags":["Threads"],"summary":"Get Threads post","description":"Get a single Threads 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 Threads post."},"required":true,"description":"Link to the Threads post.","name":"url","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":"Lookup 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 was found."},"post":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Post id."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode for the post."},"url":{"type":"string","minLength":1,"description":"Canonical public Threads URL."},"caption":{"type":"string","nullable":true,"description":"Caption text."},"takenAt":{"type":"integer","minimum":0,"description":"Unix timestamp when the post was published."},"isReply":{"type":"boolean","description":"Whether this post is a reply."},"replyControl":{"type":"string","nullable":true,"description":"Reply audience setting when available."},"unavailableReason":{"type":"string","nullable":true,"description":"Reason when content is unavailable."}},"required":["id","shortcode","url","caption","takenAt"],"description":"Primary post when found."},"author":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["threads"],"description":"Social platform for this author."},"platformUserId":{"type":"string","description":"Numeric profile id."},"handle":{"type":"string","minLength":1,"description":"Threads username without a leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL."},"verified":{"type":"boolean","description":"Whether the profile is verified."},"privateAccount":{"type":"boolean","description":"Whether the account is private."}},"required":["platform","handle","verified"],"description":"Author when found."},"metrics":{"type":"object","nullable":true,"properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"replies":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count when available."},"reposts":{"type":"integer","nullable":true,"minimum":0,"description":"Repost count when available."},"quotes":{"type":"integer","nullable":true,"minimum":0,"description":"Quote count when available."},"reshares":{"type":"integer","nullable":true,"minimum":0,"description":"Reshare count when available."}},"description":"Engagement metrics for a Threads post."},"media":{"type":"object","nullable":true,"properties":{"mediaType":{"type":"string","enum":["text","image","video","carousel","unknown"],"description":"Normalized media kind."},"images":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Media URL."},"width":{"type":"integer","nullable":true,"minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","nullable":true,"minimum":0,"description":"Height in pixels when available."}},"required":["url"],"description":"One image or video rendition."},"description":"Image renditions."},"videos":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Media URL."},"width":{"type":"integer","nullable":true,"minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","nullable":true,"minimum":0,"description":"Height in pixels when available."}},"required":["url"],"description":"One image or video rendition."},"description":"Video renditions."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original dimensions when available."},"accessibilityCaption":{"type":"string","nullable":true,"description":"Accessibility description when available."}},"required":["mediaType","images","videos"],"description":"Primary media payload for the post."},"replies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Post id."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode."},"url":{"type":"string","minLength":1,"description":"Canonical public Threads URL."},"caption":{"type":"string","nullable":true,"description":"Caption text."},"takenAt":{"type":"integer","minimum":0,"description":"Unix timestamp when published."},"author":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["threads"],"description":"Social platform for this author."},"platformUserId":{"type":"string","description":"Numeric profile id."},"handle":{"type":"string","minLength":1,"description":"Threads username without a leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL."},"verified":{"type":"boolean","description":"Whether the profile is verified."},"privateAccount":{"type":"boolean","description":"Whether the account is private."}},"required":["platform","handle","verified"],"description":"Author when known."},"metrics":{"type":"object","nullable":true,"properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"replies":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count when available."},"reposts":{"type":"integer","nullable":true,"minimum":0,"description":"Repost count when available."},"quotes":{"type":"integer","nullable":true,"minimum":0,"description":"Quote count when available."},"reshares":{"type":"integer","nullable":true,"minimum":0,"description":"Reshare count when available."}},"description":"Engagement metrics for a Threads post."}},"required":["id","shortcode","url","caption","takenAt","author","metrics"],"description":"A related Threads post or reply."},"description":"Top-level replies when available."},"relatedPosts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Post id."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode."},"url":{"type":"string","minLength":1,"description":"Canonical public Threads URL."},"caption":{"type":"string","nullable":true,"description":"Caption text."},"takenAt":{"type":"integer","minimum":0,"description":"Unix timestamp when published."},"author":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["threads"],"description":"Social platform for this author."},"platformUserId":{"type":"string","description":"Numeric profile id."},"handle":{"type":"string","minLength":1,"description":"Threads username without a leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL."},"verified":{"type":"boolean","description":"Whether the profile is verified."},"privateAccount":{"type":"boolean","description":"Whether the account is private."}},"required":["platform","handle","verified"],"description":"Author when known."},"metrics":{"type":"object","nullable":true,"properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"replies":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count when available."},"reposts":{"type":"integer","nullable":true,"minimum":0,"description":"Repost count when available."},"quotes":{"type":"integer","nullable":true,"minimum":0,"description":"Quote count when available."},"reshares":{"type":"integer","nullable":true,"minimum":0,"description":"Reshare count when available."}},"description":"Engagement metrics for a Threads post."}},"required":["id","shortcode","url","caption","takenAt","author","metrics"],"description":"A related Threads post or reply."},"description":"Related posts when available."}},"required":["lookupStatus","post","author","metrics","media","replies","relatedPosts"],"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":{"id":"3656367813102434565_63055343223","shortcode":"DK-BydcJHkF","url":"https://www.threads.net/@zuck/post/DK-BydcJHkF","caption":"Spoiler alert: We're testing a way for you to hide spoilers in your Threads posts.","takenAt":1750093031,"isReply":false,"replyControl":"everyone","unavailableReason":null},"author":{"platform":"threads","platformUserId":"63055343223","handle":"zuck","displayName":"Mark Zuckerberg","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/550174606_17925811725103224_8363667901743352243_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=lCerYOouPjAQ7kNvwEauKA4&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6XcamFXGcg4MMGm3kV1WN0SIpltv2RxBfDVkW1EXqC4g&oe=6A03613E&_nc_sid=10d13b","verified":true,"privateAccount":false},"metrics":{"likes":94859,"views":8609268,"replies":4954,"reposts":4617,"quotes":862,"reshares":4698},"media":{"mediaType":"text","images":[],"videos":[],"dimensions":{"width":612,"height":612},"accessibilityCaption":null},"replies":[{"id":"3656819010760726964_63255859674","shortcode":"DK_oYQASdm0","url":"https://www.threads.net/@jyunzhu/post/DK_oYQASdm0","caption":"這是什麼酷東西???","takenAt":1750146818,"author":{"platform":"threads","platformUserId":"63255859674","handle":"jyunzhu","displayName":"Jyunz Hu","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/588014151_17933901666107675_8014680020413244761_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=1is4LhzuGn8Q7kNvwFBzoi8&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6MtQaive0flNjsuWMjDRfEZkXzquwt-uRKWmmoSPgJVQ&oe=6A038E0F&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656820964741905227_65944988789","shortcode":"DK_o0rypHtL","url":"https://www.threads.net/@llama.8078/post/DK_o0rypHtL","caption":"O my god🥰","takenAt":1750147050,"author":{"platform":"threads","platformUserId":"65944988789","handle":"llama.8078","displayName":"Moumita Dwari","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/456335226_1701569520379523_1256269880807878832_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=ooUBKAMN5kEQ7kNvwHw9vm_&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af5Y5rBYxPBwo-IcVA-xVTy8DkbjlyNmxP3bHg2q2DmM4w&oe=6A0371D8&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656823730170328786_71728369078","shortcode":"DK_pc7TBXbS","url":"https://www.threads.net/@samruddhibarai_/post/DK_pc7TBXbS","caption":"It is kinda prettttyyyyyy idc what others say!!","takenAt":1750147380,"author":{"platform":"threads","platformUserId":"71728369078","handle":"samruddhibarai_","displayName":"Samruddhii","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/473781873_649771390889985_4060626127902833329_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zMjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=8X3VSX_sE8cQ7kNvwGZCiDB&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6B1Rr54Bvd0B-Rbna9ah0U-JusJDV3pOp2tl-okW4VDA&oe=6A038928&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":5,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656824083981527539_68256407302","shortcode":"DK_piEzz-nz","url":"https://www.threads.net/@cjwakun24/post/DK_piEzz-nz","caption":"Geez","takenAt":1750147422,"author":{"platform":"threads","platformUserId":"68256407302","handle":"cjwakun24","displayName":"Wakunzsz","avatarUrl":"https://scontent-nrt1-2.cdninstagram.com/v/t51.2885-19/573323465_1219825463302212_7278921664109726296_n.png?stp=dst-webp&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-nrt1-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEq-PpV3l5Afk6_TbDdEObnk_KXoScUSQobOFEOalIsiM688kOq7ZmuJcfV3GGU1UA&_nc_ohc=wLsPVb1IPasQ7kNvwEeGwQZ&_nc_gid=hfE0Lmk7j83wLW--WWUQ8A&edm=AL4D0a4BAAAA&ccb=7-5&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.3-ccb7-5&oh=00_Af4xgb0N5WfL7RsiECXQzWc_tZRCQV6_n1QZHtTD5jX2Dw&oe=6A038B2A&_nc_sid=9e8221","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656824724331610636_70088407688","shortcode":"DK_prZLpsIM","url":"https://www.threads.net/@kaatil_kutta/post/DK_prZLpsIM","caption":"Thats actually a cool feature","takenAt":1750147499,"author":{"platform":"threads","platformUserId":"70088407688","handle":"kaatil_kutta","displayName":"Zoo Zoo","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/463641432_1077595119955180_1473559425399017518_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=YrP3nRmN_4cQ7kNvwES-I1j&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7ny-HGSXEHtwNqOu_owNB5lP27Lj1FedATAi5LD8nyYQ&oe=6A039420&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656824860043838605_63269221512","shortcode":"DK_ptXkuwSN","url":"https://www.threads.net/@soph_dre420/post/DK_ptXkuwSN","caption":"fuck you and your tech billionaire fuck buddies i hope you all rot in hell where you belong","takenAt":1750147515,"author":{"platform":"threads","platformUserId":"63269221512","handle":"soph_dre420","displayName":"sophia dreiske","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/393398971_1045769523509424_6527068543648364943_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby45NjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=VQ_cMwkGrPEQ7kNvwGpN5_G&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af4MAJMaCI2ObuzQ47YDbJGLM_qBOWPLqXOqgith8QyKKQ&oe=6A0383E1&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":3,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656825811442998183_63463014012","shortcode":"DK_p7Noihun","url":"https://www.threads.net/@claudio.rbuk/post/DK_p7Noihun","caption":"🤩👊","takenAt":1750147628,"author":{"platform":"threads","platformUserId":"63463014012","handle":"claudio.rbuk","displayName":"Claudio Muratore","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/499562395_17907606726118013_870449012674279577_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=eNOqe_VcwMMQ7kNvwG5StB-&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7y-5vRzpdBna_QqFvRybMOcRbDUycWmPVkuTNK17yeTA&oe=6A037C5B&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656826452594227375_71417629016","shortcode":"DK_qEiwIXiv","url":"https://www.threads.net/@iambigsis9ja/post/DK_qEiwIXiv","caption":"Increase texts like Facebook. People come here to write","takenAt":1750147705,"author":{"platform":"threads","platformUserId":"71417629016","handle":"iambigsis9ja","displayName":"GLOBAL VOICE FOR KIM SOO HYUN","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/673878682_17910533919381017_2420847293135670575_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=Ka_21znxzywQ7kNvwE6LV4j&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6H6GqLPlfwjt8pD4dStkEthRwettiywhdI1onjTyHYUA&oe=6A037B12&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":5,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656827098619603320_75215197039","shortcode":"DK_qN8aPml4","url":"https://www.threads.net/@xoxomimi_22/post/DK_qN8aPml4","caption":"WHAT HOW'S THAT","takenAt":1750147782,"author":{"platform":"threads","platformUserId":"75215197039","handle":"xoxomimi_22","displayName":"ms_coraline","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/506314650_17843510916510200_6706531399152104849_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=cBFgIfZOS4gQ7kNvwGPLUGi&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7XdkCsjs-bPhPQCbufYyoR4V24Vkl04FvYDbdAg9R0Pw&oe=6A036642&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656827239506305180_75215197039","shortcode":"DK_qP_nvuCc","url":"https://www.threads.net/@xoxomimi_22/post/DK_qP_nvuCc","caption":"WHAT HOW'S THAT","takenAt":1750147798,"author":{"platform":"threads","platformUserId":"75215197039","handle":"xoxomimi_22","displayName":"ms_coraline","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/506314650_17843510916510200_6706531399152104849_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=cBFgIfZOS4gQ7kNvwGPLUGi&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7XdkCsjs-bPhPQCbufYyoR4V24Vkl04FvYDbdAg9R0Pw&oe=6A036642&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656828472008983879_74979180028","shortcode":"DK_qh7eoUVH","url":"https://www.threads.net/@luthandosound/post/DK_qh7eoUVH","caption":"Spoiler alert my Ep is available in all music streaming platforms \n\nLink 🔗 \n\nhttps://open.spotify.com/album/79JLYwlErgv3fwxZdfHcmS?si=Jmawuw79Q8qQYW6hi-QcAw","takenAt":1750147945,"author":{"platform":"threads","platformUserId":"74979180028","handle":"luthandosound","displayName":"Luthando Jamda","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/657923926_17883245946500029_281056208906893781_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby45MzEuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=XnTNEPM-yqkQ7kNvwGHgtIj&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7MOA62s9mqWuxx059TtLjjjbdVRv49xMnDSFEsIwvEbQ&oe=6A037B8B&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":0,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656828754422414190_71627710681","shortcode":"DK_qmCfyDtu","url":"https://www.threads.net/@iqra.kazakh/post/DK_qmCfyDtu","caption":"Spoiler alert: You can learn Kazakh language with us 🇰🇿","takenAt":1750147979,"author":{"platform":"threads","platformUserId":"71627710681","handle":"iqra.kazakh","displayName":"КУРСЫ КАЗАХСКОГО ЯЗЫКА | ҚАЗАҚ ТІЛІ КУРСТАРЫ","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/475738220_3838136083168729_7423595206062256604_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41OTQuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=Ed1oEEz_kXMQ7kNvwFv3UNN&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af67R7nhgCGx8iKf1MXqdY8w3RYbLVDDOjUyo98M7iYNPg&oe=6A0375B0&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":15,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656829336296732223_63100949302","shortcode":"DK_qugaMbY_","url":"https://www.threads.net/@amalathea/post/DK_qugaMbY_","caption":"FIX THE DAMN GIFS!","takenAt":1750148048,"author":{"platform":"threads","platformUserId":"63100949302","handle":"amalathea","displayName":"Tricia🏴󠁧󠁢󠁷󠁬󠁳󠁿","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358002781_585333480416331_6104943161927415619_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42NzYuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=CQIF7bfJlgoQ7kNvwGY8DwM&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af4X_wZAmHpLKjqe_ySzKmjmuCp4_peQSBbL2AfWGON7nA&oe=6A037F69&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":7,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656829375854254443_63400366838","shortcode":"DK_qvFQAZlr","url":"https://www.threads.net/@tobiass1979/post/DK_qvFQAZlr","caption":"Spoiler alert: Wanna’ change your policy yet?","takenAt":1750148053,"author":{"platform":"threads","platformUserId":"63400366838","handle":"tobiass1979","displayName":"Tobias Morgan","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358520764_250380547743169_6221950170203544677_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby43MjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=UiE7QSu2tx4Q7kNvwE5FWxv&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af65lweVN9N0D_tY0KcSfIVUsNVH0v2zeVwFqO5HxqA6CQ&oe=6A0384EE&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":14,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656830197211702872_73953114994","shortcode":"DK_q7CMuaZY","url":"https://www.threads.net/@evvisualartist/post/DK_q7CMuaZY","caption":"Hahah why are people bullying him wtf","takenAt":1750148151,"author":{"platform":"threads","platformUserId":"73953114994","handle":"evvisualartist","displayName":null,"avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/490229574_1196603125339265_6012917286825304588_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zNTQuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=CleDaHNJZqYQ7kNvwHjNst2&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6eewFtbeKvCAuhZVhImHhHR2s37ak-gugxwYgP5XSU-w&oe=6A035E61&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656830467375898402_63299011458","shortcode":"DK_q-9zxB8i","url":"https://www.threads.net/@hermawan_st/post/DK_q-9zxB8i","caption":"Jian zuck the nan....","takenAt":1750148183,"author":{"platform":"threads","platformUserId":"63299011458","handle":"hermawan_st","displayName":"hermawan s","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/358379322_753946983087042_5196911664580077237_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=y5DV3lUjFG8Q7kNvwGzoZpD&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7kMrNuKEYJKoP9rrn7yAJqmzza3kzq82fW8EDxKt-LoA&oe=6A038926&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3656830662225923844_73953114994","shortcode":"DK_rBzRu48E","url":"https://www.threads.net/@evvisualartist/post/DK_rBzRu48E","caption":"Idk what are people talking about i have no rage baiting or content like that.. u reep what u sow ig","takenAt":1750148207,"author":{"platform":"threads","platformUserId":"73953114994","handle":"evvisualartist","displayName":null,"avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/490229574_1196603125339265_6012917286825304588_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zNTQuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gHHWjX5iL-Qrs-ISMR2XgRI-gvddVGBqhblh2Y5MEIt4ceU9RByN265kE8PCRZ5K_0&_nc_ohc=CleDaHNJZqYQ7kNvwHjNst2&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6eewFtbeKvCAuhZVhImHhHR2s37ak-gugxwYgP5XSU-w&oe=6A035E61&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}}],"relatedPosts":[{"id":"3889043177222979276_66417122295","shortcode":"DX4qComiD7M","url":"https://www.threads.net/@oud.asia.sky/post/DX4qComiD7M","caption":null,"takenAt":1777830095,"author":{"platform":"threads","platformUserId":"66417122295","handle":"oud.asia.sky","displayName":"متجر عود آسيا للعود والعطور 🦅 ASIA SKY OUD & PERFUMES","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/671034600_18077488934561684_5866826537694846167_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby45OTcuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gHjDcP4wGwIyt1RzpHoMrENSykuiC_Z78GMe3a2lDNGhVHFrmUVAk1X9gBZ4NdItvE&_nc_ohc=d8byYNy5Ut8Q7kNvwEhwSjb&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af5QCXlzldUA5J4al-2yUsbMFGi5wvwR3lSyHh41fMhc8Q&oe=6A03686C&_nc_sid=10d13b","verified":true,"privateAccount":false},"metrics":{"likes":0,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3877468557626844564_63243402717","shortcode":"DXPiRwFGCWU","url":"https://www.threads.net/@aaron.ramsey.waters/post/DXPiRwFGCWU","caption":"Just a PSA that Threads has an amazing feature for preventing spoilers. Just highlight your text and click MARK SPOILER before you post.","takenAt":1776450293,"author":{"platform":"threads","platformUserId":"63243402717","handle":"aaron.ramsey.waters","displayName":"Aaron Waters","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/630107321_17944739223106718_5046044296223592246_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2gHjDcP4wGwIyt1RzpHoMrENSykuiC_Z78GMe3a2lDNGhVHFrmUVAk1X9gBZ4NdItvE&_nc_ohc=Amh6i2IMGAcQ7kNvwEDQLXo&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af4mHPXCtXodYSTTigz_OhQW99hToiLYnpuJrZwBetai6g&oe=6A037C43&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":0,"reposts":0,"quotes":1,"reshares":null}},{"id":"3880685675691707937_63378718826","shortcode":"DXa9w-wjQ4h","url":"https://www.threads.net/@walofbooks/post/DXa9w-wjQ4h","caption":"It fascinates me how Threads has a built in spoiler feature that people just... never use? for actual spoilers? No warning?!","takenAt":1776833804,"author":{"platform":"threads","platformUserId":"63378718826","handle":"walofbooks","displayName":"Wal of Books Ink. | Gift Shop-ist","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/606817041_17930929059118827_7111379946039722005_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zODAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gHjDcP4wGwIyt1RzpHoMrENSykuiC_Z78GMe3a2lDNGhVHFrmUVAk1X9gBZ4NdItvE&_nc_ohc=43OrUM1uwAsQ7kNvwGXt6Ol&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6FEht3l0n0LFvPd2c-qMm_EsGKANc3UVsBu1yCp0mIRw&oe=6A037036&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":1,"views":null,"replies":0,"reposts":0,"quotes":0,"reshares":null}},{"id":"3870932507341109107_63155149774","shortcode":"DW4UJs5lDdz","url":"https://www.threads.net/@sonusagii/post/DW4UJs5lDdz","caption":"To anyone who had possibly been spoiled by any of my posts this morning/afternoon, my badd fr.\n\nI scheduled about 8 posts this morning using the spoiler feature, and it was just pointed out to me that one of them (with huge spoils) didn't have it. I checked and turned out none of my scheduled posts kept the spoiler on ANY of the text, only on the images. \n\nIs this a Threads bug or something I did wrong?","takenAt":1775671135,"author":{"platform":"threads","platformUserId":"63155149774","handle":"sonusagii","displayName":"Oosagi","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/684966273_17959112973109775_8207094684613577045_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zMjAuYzIifQ&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHjDcP4wGwIyt1RzpHoMrENSykuiC_Z78GMe3a2lDNGhVHFrmUVAk1X9gBZ4NdItvE&_nc_ohc=E2SnVrdYz84Q7kNvwF645od&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af44ilO3fom3_ZH5Nn1UNpWt8OYAPSRPaMrHQ2svgB2_0w&oe=6A038678&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":2,"views":null,"replies":2,"reposts":0,"quotes":0,"reshares":null}},{"id":"3885344910941023829_42269183033","shortcode":"DXrhJxugu5V","url":"https://www.threads.net/@thetechnixian_ttv/post/DXrhJxugu5V","caption":"Here's a tip: spoilers are overrated on Threads, just delete the app instead","takenAt":1777389228,"author":{"platform":"threads","platformUserId":"42269183033","handle":"thetechnixian_ttv","displayName":"TheTechnixian","avatarUrl":"https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/642485468_18058675697415034_7452124844322162511_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gHjDcP4wGwIyt1RzpHoMrENSykuiC_Z78GMe3a2lDNGhVHFrmUVAk1X9gBZ4NdItvE&_nc_ohc=SnkIcPiR_jIQ7kNvwEHUzYH&_nc_gid=vgGVgF9UhhFyDosRMSy-1A&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af4LZt4-Oh9TqXPqkg2YlWds561FXTIMZNODEKGbVpQkDA&oe=6A038B85&_nc_sid=10d13b","verified":false,"privateAccount":false},"metrics":{"likes":10,"views":null,"replies":19,"reposts":0,"quotes":0,"reshares":null}}]},"meta":{"requestId":"req_51993c8b-958d-4345-90d4-f7289d6cda28","creditsCharged":1,"version":"v1"}}},"trimmed":{"value":{"data":{"lookupStatus":"found","post":{"id":"3656367813102434565_63055343223","shortcode":"DK-BydcJHkF","url":"https://www.threads.net/@zuck/post/DK-BydcJHkF","caption":"Example caption text.","takenAt":1750093031},"author":{"platform":"threads","handle":"zuck","displayName":"Mark Zuckerberg","verified":true,"privateAccount":false},"metrics":{"likes":94860,"views":8609266,"replies":null,"reposts":null,"quotes":null,"reshares":null},"media":{"mediaType":"text","images":[],"videos":[]},"replies":[],"relatedPosts":[]},"meta":{"requestId":"req_01example_trim","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"author":null,"metrics":null,"media":null,"replies":[],"relatedPosts":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/users/search":{"get":{"tags":["Threads"],"summary":"Search Threads users","description":"Search for users on Threads.","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 Threads users."},"required":true,"description":"Search query text for Threads users.","name":"query","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":["threads"],"description":"Social platform for this user."},"handle":{"type":"string","minLength":1,"description":"Threads username without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Public display name shown for the user, 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 Threads profile URL."},"platformUserId":{"type":"string","description":"Threads user id as a string when available."},"activeOnThreads":{"type":"boolean","description":"Whether the account is reported as active on Threads."},"onboardedToThreads":{"type":"boolean","description":"Whether the account is reported as onboarded to Threads."}},"required":["platform","handle","displayName","avatarUrl","verified","profileUrl"],"description":"A summarized public Threads user search result."},"description":"Users returned for the search query."},"totalUsers":{"type":"integer","minimum":0,"description":"Number of users returned in this response."}},"required":["query","users","totalUsers"],"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":"zuck","users":[{"platform":"threads","handle":"zuck","displayName":"Mark Zuckerberg","avatarUrl":"https://scontent-ord5-3.cdninstagram.com/v/t51.82787-19/550174606_17925811725103224_8363667901743352243_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=7d5F85P0bwEQ7kNvwH_C9Rr&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af5Z18n5C4ee--k0RbDkSdBeEXxYId-EoBftxWC-jSorVg&oe=6A0F3EBE&_nc_sid=e8efdc","verified":true,"profileUrl":"https://www.threads.net/@zuck","platformUserId":"63055343223","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"ben_zucker_musik","displayName":"Ben Zucker","avatarUrl":"https://scontent-ord5-2.cdninstagram.com/v/t51.2885-19/463655732_532857019530184_2804600388665544218_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=yGvnmE9Ti-IQ7kNvwFkuN5-&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af7HoY8-xdY4uVFRyu5Xnc5hXBN5kuI9c1i6C4aFkliaJg&oe=6A0F533B&_nc_sid=e8efdc","verified":true,"profileUrl":"https://www.threads.net/@ben_zucker_musik","platformUserId":"64054509910","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"zuckerweich","displayName":"𝒥𝓊𝓁𝒾𝒶𝓃𝒶 🕊","avatarUrl":"https://scontent-ord5-1.cdninstagram.com/v/t51.82787-19/670541587_17923783848293924_5239905107746844836_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=-_hKNGabkVcQ7kNvwEtRDD4&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af4-AwhDimypHAXE1Ljis2FmgMz1F9E5QjjZ2LT2vKODdA&oe=6A0F497C&_nc_sid=e8efdc","verified":false,"profileUrl":"https://www.threads.net/@zuckerweich","platformUserId":"68789565923","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"leonardzuckerman","displayName":"Leonard Zuckerman","avatarUrl":"https://scontent-ord5-3.cdninstagram.com/v/t51.2885-19/461574134_491012317082373_3315387035499263206_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=kvg91r1VGAgQ7kNvwHRYh_A&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af4IEuXGOKk2KKsMtJpQOmtxBP9ISnGqm49ekig4HriNRw&oe=6A0F37FE&_nc_sid=e8efdc","verified":false,"profileUrl":"https://www.threads.net/@leonardzuckerman","platformUserId":"69097393384","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"zucker.cafe","displayName":"ZUCKER CAFE","avatarUrl":"https://scontent-ord5-1.cdninstagram.com/v/t51.82787-19/640395068_18025252982628162_3670335167504175737_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=nrIjBwJMdTQQ7kNvwH41mDW&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af4bocOhH1igvrnd4LHkaXixiP0dv7Ylsd-7LyAWGeNtpw&oe=6A0F4C94&_nc_sid=e8efdc","verified":false,"profileUrl":"https://www.threads.net/@zucker.cafe","platformUserId":"48870236161","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"brittanybzucker","displayName":"Brittany Zucker","avatarUrl":"https://scontent-atl3-1.cdninstagram.com/v/t51.2885-19/573323465_1219825463302212_7278921664109726296_n.png?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-atl3-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHsiCchq28g1wMmtc7DCW1YUYFXMbIvDr1rcOdOEbBP-Pqsly5XSf3zZKah_755PUg6ZqF86_KMXhAn74xOSeuE&_nc_ohc=MmLLN7F27PUQ7kNvwHr2HKq&_nc_gid=_mJQSedn1GH2ZBcxwCBMKg&edm=ACOvpJgBAAAA&ccb=7-5&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.3-ccb7-5&oh=00_Af73574BnnztdnXUWm4euIayPB-9EghtOGqSTl8b3BFngg&oe=6A0F306A&_nc_sid=81985d","verified":false,"profileUrl":"https://www.threads.net/@brittanybzucker","platformUserId":"21769033945","activeOnThreads":true,"onboardedToThreads":true},{"platform":"threads","handle":"zuckre","displayName":"Zuckre","avatarUrl":"https://scontent-ord5-2.cdninstagram.com/v/t51.2885-19/358548964_801388748201390_8541621917816059773_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2gFsiBl_rxi81aGZyHNTC_GCAxPJ5zV4vdc3a5mN_gWDt7DhcNVPWZQvydJBDc0BP4Q&_nc_ohc=HwZimHiAZBAQ7kNvwGtSFO3&_nc_gid=y9eqIFFCi3jKP7PIHm5Nxw&edm=AHhEZX8BAAAA&ccb=7-5&oh=00_Af4pl_q0qIm0GYbvUD6kMQqlrZ4zOt1nu446On1eJKQWtQ&oe=6A0F32C4&_nc_sid=e8efdc","verified":false,"profileUrl":"https://www.threads.net/@zuckre","platformUserId":"63377622259","activeOnThreads":true,"onboardedToThreads":true}],"totalUsers":7},"meta":{"requestId":"req_660f6ed6-2468-48e2-9cc7-ecc8d7056f5e","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"zzzzimprobablethreadsusersearch","totalUsers":0,"users":[]},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"sparse":{"value":{"data":{"query":"partial","totalUsers":1,"users":[{"platform":"threads","handle":"partialuser","displayName":null,"avatarUrl":null,"verified":false,"profileUrl":"https://www.threads.net/@partialuser"}]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/profiles/{handle}":{"get":{"tags":["Instagram"],"summary":"Get Instagram profile","description":"Get a full Instagram profile by handle.","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":"Instagram handle to look up, with or without a leading @."},"required":true,"description":"Instagram 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":["instagram"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"Instagram username without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Public display name on the Instagram profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"avatarUrlHd":{"type":"string","nullable":true,"description":"Higher-resolution avatar URL when available."},"verified":{"type":"boolean","description":"Whether Instagram marks the profile as verified."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Instagram profile URL."},"privateAccount":{"type":"boolean","description":"Whether the account is private."},"platformUserId":{"type":"string","description":"Instagram numeric user id as a string."},"businessAccount":{"type":"boolean","description":"Whether the account is a business account."},"professionalAccount":{"type":"boolean","description":"Whether the account is a professional/creator account."},"categoryName":{"type":"string","nullable":true,"description":"Category label when Instagram provides one."},"externalUrl":{"type":"string","nullable":true,"description":"Primary external link from the profile."},"highlightReelCount":{"type":"integer","minimum":0,"description":"Number of story highlights on the profile."},"bioLinks":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","nullable":true,"description":"Link title shown on the profile."},"url":{"type":"string","minLength":1,"description":"Destination URL."}},"required":["title","url"],"description":"A link from the Instagram profile bio."},"description":"Structured bio links when available."}},"required":["platform","handle","displayName","bio","avatarUrl","verified","profileUrl","privateAccount"],"description":"Profile details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count reported by Instagram."},"following":{"type":"integer","minimum":0,"description":"Following count reported by Instagram."},"posts":{"type":"integer","minimum":0,"description":"Total public posts count on the profile grid."}},"required":["followers","following","posts"],"description":"Profile metrics when available."},"recentPosts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Instagram media id for this post (vendor-defined)."},"shortcode":{"type":"string","description":"Public shortcode for the post URL."},"mediaType":{"type":"string","enum":["video","image","sidecar","unknown"],"description":"Normalized media type."},"caption":{"type":"string","nullable":true,"description":"Post caption when available."},"takenAt":{"type":"integer","description":"When the media was taken or posted (Unix epoch seconds)."},"commentCount":{"type":"integer","minimum":0,"description":"Comment count when available."},"likeCount":{"type":"integer","minimum":0,"description":"Like count when available."},"videoViewCount":{"type":"integer","minimum":0,"description":"Video view count for video posts when available."},"displayUrl":{"type":"string","description":"Primary display image URL."},"thumbnailUrl":{"type":"string","description":"Thumbnail image URL."},"videoUrl":{"type":"string","description":"Direct video URL when available."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Width and height when available."}},"required":["id","shortcode","mediaType","caption","takenAt"],"description":"A recent post or reel from the profile grid."},"description":"Recent grid posts from the profile when available."},"relatedProfiles":{"type":"array","items":{"type":"object","properties":{"platformUserId":{"type":"string","description":"Instagram user id for the account."},"handle":{"type":"string","description":"Instagram username."},"displayName":{"type":"string","nullable":true,"description":"Display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile picture URL."},"verified":{"type":"boolean","description":"Whether the account is verified."},"privateAccount":{"type":"boolean","description":"Whether the account is private."}},"required":["platformUserId","handle","displayName","avatarUrl","verified","privateAccount"],"description":"A suggested related Instagram account."},"description":"Suggested related accounts when available."}},"required":["lookupStatus","profile","metrics","recentPosts","relatedProfiles"],"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":"instagram","handle":"kyle","displayName":"","bio":"","avatarUrl":"https://scontent-atl3-2.cdninstagram.com/v/t51.2885-19/573323465_1219825463302212_7278921664109726296_n.png?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-atl3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gE_GDNnfoYH_5ncZoZb8pQQwSsrVFpROZWp-mZs4nCLSNS0sohryE4HAA2fLsKcXgeDQcRDedE_s6zsnoOYGS0b&_nc_ohc=MmLLN7F27PUQ7kNvwFxgFPh&_nc_gid=R40qagkkWIg56ko9fwd0zw&edm=ACOvpJgBAAAA&ccb=7-5&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.3-ccb7-5&oh=00_Af5btbwMbqqiTaJjzGAiUlH9xof-k2etf1qGF29z4MwT3Q&oe=6A0F306A&_nc_sid=81985d","avatarUrlHd":"https://scontent-atl3-2.cdninstagram.com/v/t51.2885-19/573323465_1219825463302212_7278921664109726296_n.png?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xNTAuYzIifQ&_nc_ht=scontent-atl3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gE_GDNnfoYH_5ncZoZb8pQQwSsrVFpROZWp-mZs4nCLSNS0sohryE4HAA2fLsKcXgeDQcRDedE_s6zsnoOYGS0b&_nc_ohc=MmLLN7F27PUQ7kNvwFxgFPh&_nc_gid=R40qagkkWIg56ko9fwd0zw&edm=ACOvpJgBAAAA&ccb=7-5&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.3-ccb7-5&oh=00_Af5btbwMbqqiTaJjzGAiUlH9xof-k2etf1qGF29z4MwT3Q&oe=6A0F306A&_nc_sid=81985d","verified":false,"profileUrl":"https://www.instagram.com/kyle/","privateAccount":false,"platformUserId":"2020150","businessAccount":false,"professionalAccount":false,"categoryName":null,"externalUrl":null,"highlightReelCount":0},"metrics":{"followers":20,"following":0,"posts":0},"recentPosts":[],"relatedProfiles":[]},"meta":{"requestId":"req_e4e04bf3-39c3-444f-af4d-2ebc408804d9","creditsCharged":1,"version":"v1"}}},"private":{"value":{"data":{"lookupStatus":"private","profile":{"platform":"instagram","handle":"lukem121","displayName":"Luke Askew","bio":"","avatarUrl":"https://example.com/priv.jpg","verified":false,"profileUrl":"https://www.instagram.com/lukem121/","privateAccount":true,"platformUserId":"18768689"},"metrics":{"followers":107,"following":187,"posts":13},"recentPosts":[],"relatedProfiles":[]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","profile":null,"metrics":null,"recentPosts":[],"relatedProfiles":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/profiles/{userId}/basic":{"get":{"tags":["Instagram"],"summary":"Get Instagram basic profile","description":"Get a lightweight Instagram profile by numeric user ID.","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":32,"pattern":"^\\d+$","description":"Instagram numeric user id to look up."},"required":true,"description":"Instagram numeric user id to look up.","name":"userId","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":["instagram"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"Instagram username without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Public display name on the Instagram profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"avatarUrlHd":{"type":"string","nullable":true,"description":"Higher-resolution avatar URL when available."},"verified":{"type":"boolean","description":"Whether Instagram marks the profile as verified."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Instagram profile URL."},"privateAccount":{"type":"boolean","description":"Whether the account is private."},"platformUserId":{"type":"string","description":"Instagram numeric user id as a string."},"businessAccount":{"type":"boolean","description":"Whether the account is a business account."},"professionalAccount":{"type":"boolean","nullable":true,"description":"Whether the account is a professional or creator account."},"accountType":{"type":"integer","nullable":true,"description":"Instagram account type code when available."},"categoryName":{"type":"string","nullable":true,"description":"Category label when Instagram provides one."},"externalUrl":{"type":"string","nullable":true,"description":"Primary external link from the profile."}},"required":["platform","handle","displayName","bio","avatarUrl","verified","profileUrl","privateAccount","platformUserId"],"description":"Profile details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count reported by Instagram."},"following":{"type":"integer","minimum":0,"description":"Following count reported by Instagram."},"posts":{"type":"integer","minimum":0,"description":"Total public posts count on the profile grid."}},"required":["followers","following","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":"instagram","handle":"zuck","displayName":"Mark Zuckerberg","bio":"I build stuff","avatarUrl":"https://instagram.example.com/profile/zuck/avatar.jpg","avatarUrlHd":"https://instagram.example.com/profile/zuck/avatar-hd.jpg","verified":true,"profileUrl":"https://www.instagram.com/zuck/","privateAccount":false,"platformUserId":"314216","businessAccount":false,"accountType":3,"externalUrl":""},"metrics":{"followers":16101999,"following":617,"posts":409}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"private":{"value":{"data":{"lookupStatus":"private","profile":{"platform":"instagram","handle":"lukem121","displayName":"Luke Askew","bio":"","avatarUrl":"https://example.com/priv.jpg","verified":false,"profileUrl":"https://www.instagram.com/lukem121/","privateAccount":true,"platformUserId":"18768689"},"metrics":{"followers":107,"following":187,"posts":13}},"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 user id 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/profiles/{handle}/posts":{"get":{"tags":["Instagram"],"summary":"List Instagram profile posts","description":"Get posts from a specific Instagram profile.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"When `lookupStatus` is `found`, an empty `data.posts` page with `hasMore: false` can still mean a public profile with no posts in range. When `lookupStatus` is `private` or `not_found`, posts will be empty by design.","disambiguation":"Use `data.lookupStatus` for the domain outcome; call `GET /v1/instagram/profiles/{handle}` when you need full profile cards and related fields."},"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":"Instagram handle whose posts should be listed."},"required":true,"description":"Instagram handle whose posts should be listed.","name":"handle","in":"path"},{"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":"Instagram posts for the requested profile page. Inspect `data.lookupStatus` to interpret empty `data.posts` and restriction outcomes.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","private","not_found"],"description":"Whether posts could be listed for this handle."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram media id for this item (vendor-defined composite id)."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode used in the Instagram post URL."},"mediaType":{"type":"string","enum":["image","video","sidecar","unknown"],"description":"Normalized media type."},"caption":{"type":"string","nullable":true,"description":"Caption text when Instagram provides one."},"takenAt":{"type":"integer","description":"When the media was taken or posted (Unix epoch seconds)."},"url":{"type":"string","minLength":1,"description":"Canonical public Instagram URL for this media."},"displayUrl":{"type":"string","description":"Primary display image URL when available."},"thumbnailUrl":{"type":"string","description":"Thumbnail or cover image URL when available."},"videoUrl":{"type":"string","description":"Direct video URL when this item is a video and a URL is available."},"likeCount":{"type":"integer","minimum":0,"description":"Like count when Instagram exposes it."},"commentCount":{"type":"integer","minimum":0,"description":"Comment count when Instagram exposes it."},"playCount":{"type":"integer","minimum":0,"description":"Play or view count for video content when Instagram exposes it (Instagram-only views when distinguishable)."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Width and height when available."},"taggedUsers":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Tagged Instagram username without a leading @."},"platformUserId":{"type":"string","description":"Instagram numeric user id for the tagged account when present."}},"required":["handle"],"description":"A user tagged in an Instagram media item."},"description":"Users tagged in the media when Instagram exposes them."}},"required":["id","shortcode","mediaType","caption","takenAt","url"],"description":"A single Instagram post in a profile feed page."},"description":"Instagram posts for the requested profile page."},"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 from Instagram."}},"required":["nextCursor","hasMore"],"description":"Pagination state 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":{"first_page":{"value":{"data":{"lookupStatus":"found","posts":[{"id":"3894186385615595223_260462810","shortcode":"DYK7eKrx6bX","mediaType":"video","caption":"Can you name that NFL logo?","takenAt":1778450400,"url":"https://www.instagram.com/p/DYK7eKrx6bX/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/671277477_1279367697191068_2208979038109104164_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=It8zbyTCZh0Q7kNvwFESLSf&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af6V_x7wp7SgJMPbc8dpd__iDj7t8aVtx5Gh9dVcyKY8bA&oe=6A0F35AE&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/695048960_863111330155704_3282543452239843336_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=105&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=_gZAnsIQMZ4Q7kNvwEEFbAG&_nc_oc=AdpZkOmV_uE1Mlwbctw6ew7soyKZyIVKxvU5Yq-HwR1PjERyfAz9k9FBPO_Kf9HCrAY&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af5KhTzP-vfOlMZzt-V5yUCiEyGzPiNdz865znGsjtoi7Q&oe=6A0F2ECD","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQNIFEIp8V_UBmpXCKNPXbfYU-oi3iXQM02jiAG2LNhYeRmb6GBrsNlglKtw85FaJKqRGGetEbearEtdeo4gqR5_cwtQU0vZHfinJI8.mp4?_nc_cat=109&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=d5kMkQL5mCUQ7kNvwFrzDIl&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTY3OTY1Mzc2MzA3NTkxMywiYXNzZXRfYWdlX2RheXMiOjcsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoxMTUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=99bc48e075520014&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC83MDQ3NTIzMjZCODQ3RjM5OTI5ODFCRjZGOTY5QTVBRF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzY5NEJENUUxRkUxMDU2MzY2MjRBQkIzREMzRkREREEwX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaSvabe2-j7BRUCKAJDMywXQFz5mZmZmZoYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5W2JFEE24BeRHZjznKEu28tGMjecMeHi9cip3f_rTh0w&oe=6A0B5BEE","likeCount":25598,"commentCount":703,"playCount":2657321},{"id":"3894126275165877953_260462810","shortcode":"DYKtzcdxvbB","mediaType":"video","caption":"Tom Segura said the food in Tokyo is next level","takenAt":1778443200,"url":"https://www.instagram.com/p/DYKtzcdxvbB/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/684461203_1928600604449074_6004532755645548686_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=uSBV25tjFRgQ7kNvwGKoIcW&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af7xF0TndZlifv1rNnNkvGKY1z9F_UcneJH7kCd882a4nA&oe=6A0F32F4&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/689447069_2042082826714010_2180918201319219067_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=107&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMiJ9&_nc_ohc=nj89bjG_kn8Q7kNvwFdstJY&_nc_oc=AdpoovwJS4V2F93iea4AfOaZllUbFrwKGmtmcEfWM5tAgcgquI3whDe894eY5TEFw0w&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af72G5VDaCrWR_1GtIbskoHiBQ45m1hgtUjPwdLdjkS7EQ&oe=6A0F3E0D","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQPPbGy45dtX_qPw-fS_ULCVTvxyUsheCEbZPZyBNsbyD3zKbKP62s7uz1Lm34ppm_vSEsPN6hUrA4ewV4vLiB6KWcUdfJGz0TNrC_g.mp4?_nc_cat=100&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=woJj_1mY3L4Q7kNvwEb4sTw&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6OTc2MjI0NjU0OTIwNDI4LCJhc3NldF9hZ2VfZGF5cyI6NywidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjEyNiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=37aa3adbf4a42412&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9CRTQ3RUNCMUIxMjY2MzJGNzhGMzQ2RDVEOTZFQkI5Q192aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0FDNDE3Mjg2MTQyMTQxMERCMEFCMUUyMUVBNDg3MjhBX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbYq7i84Pe7AxUCKAJDMywXQF-EOVgQYk4YEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af583XqWHk7VAryVMfpMaRnkgqYr8fXJnZ55QEzppp9FNw&oe=6A0B55A9","likeCount":407801,"commentCount":8238,"playCount":7124672},{"id":"3891103473245166237_260462810","shortcode":"DX_-f4zERqd","mediaType":"image","caption":"The Surviving Barstool Season 5 Cast has been revealed\n\nWho do you think will win it all?","takenAt":1778075710,"url":"https://www.instagram.com/p/DX_-f4zERqd/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/687794861_18601586692046811_8352141966610100441_n.jpg?stp=c0.180.1440.1440a_dst-jpg_e35_s1080x1080_sh2.08_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=jlXaK77EK4YQ7kNvwHeH90-&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af5QK9S7k5LMfFQl35lPBjG7az6fyJ0KMGzK0l_Vd_zElw&oe=6A0F550E&_nc_sid=ee9879","likeCount":13378,"commentCount":613},{"id":"3898716300094425110_260462810","shortcode":"DYbBdGTJ0gW","mediaType":"video","caption":"Is Jrue Holiday a Hall of Famer?","takenAt":1778983200,"url":"https://www.instagram.com/p/DYbBdGTJ0gW/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/700208002_1001848832236442_641423857691623090_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=cIHcBnQ2vtwQ7kNvwHWNAq9&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af6TNbP3M0ZNzUt4X8IZpcwTA17fldnX921lseragGTOMw&oe=6A0F3C64&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/702191633_1293663032320998_7889684552466610339_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=f8WLpAB0Fi4Q7kNvwE0hd72&_nc_oc=AdorqJdp-OpPkHX-k4ghkXBbFrb27wblrBWFcZys_Pl6DX9ES7moFEFM5ICj41RgvOE&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af7WfBFuBv-fFAkzDGCjjbwqnSiEHC6GLW0GtaLWL1TGzQ&oe=6A0F339C","videoUrl":"https://scontent-iad3-2.cdninstagram.com/o1/v/t2/f2/m86/AQN5-e6Cnfxqt8akhVcRssuesJqie_fur8sPif07-hWKuyC45cz0HBa7i-DX4En6AFrNK58wp8nGk4NWyAK44rk4ANf_GbXbqQ87rgU.mp4?_nc_cat=111&_nc_sid=5e9851&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_ohc=iM7u-ostd_MQ7kNvwF1IVFy&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTA3OTQ4NTUyNTI1NjQ2MCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoxMjMsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=b8ccb5007d4bbf0b&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8wMzQ3NzRBRTgxNEJEQkQ0NzE0NjBCQUY3N0NERTQ4Ql92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzU1NDIzNjUwMURBNDI2NUY5NkY4NjRBMDJEREJEOEE0X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaYpK_0qfLqAxUCKAJDMywXQF8AAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5vVTeLD91oBUd6YPR99-qo2T5Semh4X9J_KTNiEgMJhg&oe=6A0B3718","likeCount":3131,"commentCount":181,"playCount":189327},{"id":"3898655835636992272_260462810","shortcode":"DYaztOYpYkQ","mediaType":"video","caption":"What’s the best sound effect?","takenAt":1778976000,"url":"https://www.instagram.com/p/DYaztOYpYkQ/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/701663968_998250709560846_5085146507693104996_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=l3_LxzDuAQcQ7kNvwGAE5qV&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af6TUy5LH3Xi7l_a6OSFv8TuAShU4vYP1G7YNyxF-3v_VQ&oe=6A0F5317&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/671227331_4590698541164870_3642512664017200646_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=vWp8MMah3pUQ7kNvwFjS1Jq&_nc_oc=AdqAoEzSLcZms1EvUBjhz9yPAV1AJK-n74o_p5AuiVfueJFyMLeUPR8fDULDzUzeyTA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af71iKaNCdhVDosdQzuisnQLaJCNBAs0tMLC6B_Me7WMvg&oe=6A0F37B6","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQOIIznULS-0WFVfLenLNHIS-GkglQvZ9B1BCV2kekMHRjkXIa6kiSC7uXPdE1i5GAaop9_64Ky7xF-CYmawk5BNb2iAwaQWOp8nyJQ.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=AnzL886FgzgQ7kNvwEf74Q_&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTg5MjUzMTI3NDc5MzQzMSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozNiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=b7b1b131f77e8e25&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8yMTRFMzJEMzk5RkJBOTlGNzBFREQ0RjY2RDA3OTE4OF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzc3NENDNTM3ODIyRjU4OUQ5NjY1QTVFOTM4ODk4MjlCX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACauh-Ll6M_cBhUCKAJDMywXQEJmyLQ5WBAYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5WTCos2lzvAnOt3UthybQfHQUC02ST1_JoWGwCneujZg&oe=6A0B4A70","likeCount":1357,"commentCount":21,"playCount":234472},{"id":"3898595340385094778_260462810","shortcode":"DYal85ypYx6","mediaType":"video","caption":"Who should go #1 overall?","takenAt":1778968800,"url":"https://www.instagram.com/p/DYal85ypYx6/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/670272105_952842837627945_6644392763408236218_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=M3ICXgDPLEYQ7kNvwGrIPnY&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af44IIfN03LQ13BlEpTyoz81-AYo88uUwX4ZvO5lgHBo4A&oe=6A0F448E&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/700129743_26636290422689302_6457364652355564582_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=y9wfTGv4UskQ7kNvwHkW61S&_nc_oc=AdryFwFimZrYSC8EAI7W52Y675RDkLPlXwTFEW1WMPv7hAaqXuL9HiXBWVQFNF-8ThE&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af733_Y3d6LBViLRrDXlWjt5kGIepl3_xS_g4bgMSbKofQ&oe=6A0F3F00","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQMw37Vzsye2aBveqrlmwU8SGj-WNYKcRXaFWbShy-ySo7jJa1Nd3bksy4wsaYjFdOcWwc1U22SL8hGmgRuRsqMe6NRB4613F0Wthh8.mp4?_nc_cat=106&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=_Dh9NZ_yNsMQ7kNvwHWc4Jm&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTk5NTkwMjAyODQ2NzU1MSwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjo2MSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=990f396277cacbf8&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xMzRDMkUzMUQ2N0ZDNjZDRENDNjAyRkMwNDM3ODc5NV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzJFNERFODFGM0Q4QTlFMjFCNDgwMTlCMjVFQ0E0NTlBX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACa-tc725NCLBxUCKAJDMywXQE6MCDEm6XkYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af7l6uDK3GG6niQDWoQ0p3Ol8BfeBBTCQoHp6bnPf7SsFQ&oe=6A0B56D3","likeCount":1682,"commentCount":54,"playCount":206718},{"id":"3898535413662779617_260462810","shortcode":"DYaYU2rpojh","mediaType":"video","caption":"What is the most iconic call in broadcasting?","takenAt":1778961600,"url":"https://www.instagram.com/p/DYaYU2rpojh/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/690004709_2199347637502838_599155185450000418_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=_AF8UQOAMpAQ7kNvwFJ5I9I&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af7_MQdGlQyR8ExVOJsPMqpwrNXemOww1cXp7O2xTn14mw&oe=6A0F2FA7&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/671036021_1510995450610386_6210575742281712712_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=npj00o-zADsQ7kNvwHwClYK&_nc_oc=AdpkTXIP422LeeSi6AH0wnyry75sQxVHmFrK2p4AXdROJKfFOubJoluk-gXSogqgEkQ&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af4CVPUgBTUEmVndvm_3ZeTFiHO4pJ-WABFuBuHjb6BSoQ&oe=6A0F4AF8","videoUrl":"https://scontent-iad3-1.cdninstagram.com/o1/v/t2/f2/m86/AQPR0ZI9-Y_y7QuckrAzvUnJCBBMYUl13sQMeoHek9FX2MhKTkEnBtJ1tTLQoOBW3uacrB-i8eOD8gb4ILLxFAqOULpxRGaNZE0o1wg.mp4?_nc_cat=110&_nc_sid=5e9851&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_ohc=U8pK0ucpLH8Q7kNvwFbZtmN&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNTc2LmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTMxNTA5MTczMDU5NTMzMiwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjo4OSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=268b44fe665c3fbe&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9ERjRBNkY0OEY5MDUzRjJGRjE2RkE0QzM3RDQ4MzI4Ql92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzFDNDQ5OEI5MzM3RjkxOUZGODhFNTBFMTU4NUREODhGX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaI-Jf3tITWBBUCKAJDMywXQFZ90vGp--cYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af5uYGYWmxXV6TG0XC54B4Dt-SBAjAZsB3S58YGD1s5Yuw&oe=6A0B4A03","likeCount":3631,"commentCount":661,"playCount":418533},{"id":"3898474560124940469_260462810","shortcode":"DYaKfUaJPC1","mediaType":"video","caption":"Tom Segura’s one restaurant recommendation","takenAt":1778954400,"url":"https://www.instagram.com/p/DYaKfUaJPC1/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/700260688_27104855935806976_2011833705063801371_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=SGQ2n1UCsJIQ7kNvwHe9hND&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af4wzeEWeQpUr2HuP467fmtYa8oCLSws0lNaUoVFrhjlLA&oe=6A0F45FB&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/701420610_1008190915222163_8429850421162483717_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=1_D42mPYwOEQ7kNvwH-rtN9&_nc_oc=Adop-u0SY73Wy-55nr_7nOHiOuu2QZOmsbaSEivJ6MwFxQ6OkyXilYSgATlHiur_b4c&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af7B03fJbiz3pqdTzZ_cuYQmWG7BSoMcYFNyfsQ9_MgGSQ&oe=6A0F3A9F","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQOcSy4yLp120xJ0etFAD_AAj20VVMS1ldaOJVy2fnmzDLJZ3BiV8-8f5do2JY9bwvULYq8j-CU2AOxtwK-D0evvpxBwa0Doz9DGKS4.mp4?_nc_cat=100&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=TkP0sbXi_AoQ7kNvwEpgQ1F&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzIuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MjIyNDExMDI2ODQxNjkzMCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjo1OSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=8d6455a2d4b4c85e&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC82MzRBQkJGMzhGODg1RkQxOUZENzI0RjA5NEU2M0NBMF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0FCNEEwNjI1NUMxNkYyNTZEMUJFOEU5OUUxODQwQ0E3X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbEjuznoLTzBxUCKAJDMiwXQE2ZmZmZmZoYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6oJ4jYCCNrwL6jSfT7Rm7PTKSdBKEdYqO-4ysSdEv8Ng&oe=6A0B5D7D","likeCount":7386,"commentCount":97,"playCount":555654},{"id":"3898414309828948813_260462810","shortcode":"DYZ8yj8p3NN","mediaType":"video","caption":"What country is named after a mountain?","takenAt":1778947200,"url":"https://www.instagram.com/p/DYZ8yj8p3NN/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/686971934_1299840628951876_3816828907102504337_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=9WDvSN4fP-wQ7kNvwH1zYE-&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af6cpfWTxcwf3HtC3M4zRhg7Jy4rVx0OTBu8vpxlfmzs5A&oe=6A0F3071&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/701216868_930272103327315_6916645033595217818_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=QaUo7uNKWRIQ7kNvwGtTmBa&_nc_oc=AdrfwUOF3-Mr3O3m9lUwGBJVle92udCgSQAR75IEwUg10TB72O0fGI88kg-6X3guKGw&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af7MhG-w7aCKYQVY55ogyOmyEFTrKWBdhtDiP16l4rbaaw&oe=6A0F4B9C","videoUrl":"https://scontent-iad3-1.cdninstagram.com/o1/v/t2/f2/m86/AQMFVtV0i_ShDzkg1YtzbOfq9SJ7J8keD0VzS55qRm-58Aur_u7JLmyyuOsHeMBWhp4aiqn8YkXLIPQW7yqT52CfHBO0O8zjbiKmSZY.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_ohc=C9NhHsCgizUQ7kNvwHx_80H&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTM3Njc2NDMzNzYxNTA4OCwiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjo3NSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=50e0d6d316727b97&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9FOTREOEQ3RUVBM0M1NTNCOEY0MDVGNzYzRDkwMkNBOV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0Y2NDk5NEM5NEJGMjU4NUZEREM5RjA0ODk5OTNCNTkzX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbgw8PUnYryBBUCKAJDMywXQFLAAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af4RhdP3ezVd8meN5GXlvAgL5N5ZIi9TPk_kq6UEEQZbSQ&oe=6A0B2EFD","likeCount":7365,"commentCount":339,"playCount":1073545},{"id":"3894307449066732016_260462810","shortcode":"DYLW_3zx7nw","mediaType":"video","caption":"Can you identify this movie based on these 3 screenshots?","takenAt":1778940000,"url":"https://www.instagram.com/p/DYLW_3zx7nw/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/688871894_1619448905986797_8119666651556314392_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=Q1-z7_vBnvwQ7kNvwFc-Wwf&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af7jLvzeXpXosWDHW0q2MaTYMCJ59h1UBMGZZozo6LogVA&oe=6A0F4553&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/694949173_1220717676635505_1317468082601963786_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=1&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=wm3johV8cvsQ7kNvwEUg2_4&_nc_oc=AdoW-3y8JypYOEvmts05imbjbiiNbCp0UdCElIyvNl1-Rmj-kTcZ4f7DHHbkp3ICrjo&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af7l_uoX645ftZoZNGvM2FB3ZUjePs1UxEt9FMmqz9ITrQ&oe=6A0F45CA","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQM9bmKo1VIq8qVS7eMz3G7XDyu4gBc1hr-THQ2a4L9tahbCRjRP2t6YiajmeZNYPtN2YxCA2yXtcMb63MpAGfE7rVT-C3iQi3r9xVc.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=g7Ts2Z2qxaIQ7kNvwHqC83v&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6OTkxNTk4MjAzNDg3NTkyLCJhc3NldF9hZ2VfZGF5cyI6NywidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjE0MywidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=b93705865e5a9856&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9DNzQ2NjU3QTMyMjg2NEI1QzgwRDFFNTZCNzU4NUJBQ192aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0IyNENCNzFGREZBNEI3QTZCMUVFRTFFRjBDRUMyNTlGX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbQle6qzvbCAxUCKAJDMywXQGH4gxJul40YEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6qkuptP0bUkWUpL_FNpMASbVU42tG7p-nkshLzQmYa1g&oe=6A0B4144","likeCount":7931,"commentCount":229,"playCount":1021038},{"id":"3894246787435063658_260462810","shortcode":"DYLJNIQxelq","mediaType":"video","caption":"Cleveland is more of a coastal town than LA","takenAt":1778932800,"url":"https://www.instagram.com/p/DYLJNIQxelq/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/689248200_1499991581490041_8966764406732030030_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=NOSbmz8FWhUQ7kNvwHJ8iob&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af6A1ujhSgBHsTgF5xYJFNMj23CbFkOnnVbiACHOy9gYZg&oe=6A0F2908&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/688223280_1519355339846891_1224955121042756010_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=ei67Yp9opsgQ7kNvwGO8W0B&_nc_oc=AdqFilPpxwm7N0HT-fGVnQzW7zu0Rbg5gmSY97OmpWcQm7xhmX_Acw__VOTxYqa-uAA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af66hajYgsNcBAlpAy1EZYHKjK7uCWy1gUdtBE0IAdC1pw&oe=6A0F4192","videoUrl":"https://scontent-iad3-2.cdninstagram.com/o1/v/t2/f2/m86/AQP9A3C0RmGkhZrG9EP3k6q-gGZx6rfo2degbdfYkxGM0U7U7WZn0O7zTaGvyW0xFwBgRbiFWn6r486z0fSJwx5DPZ83KPAURV8wkEU.mp4?_nc_cat=105&_nc_sid=5e9851&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_ohc=QcoKGeKqaCAQ7kNvwHydTy6&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTMyNjA0MDYyNjA5MTc3MSwiYXNzZXRfYWdlX2RheXMiOjcsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjo0MCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=d598c6ccacbb9936&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9CODRBQzNBNzU4NUQ3QTE5QzdBRTkzRjQxRDE0M0VCNF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzM2NDU0MTk5QjBGRkQyNkQ1OUI4ODEwQkJBNzhDODkyX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACb2287H3IHbBBUCKAJDMywXQER8rAgxJukYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af6skfjWVmcXhYCy8aHXFx4fERGpRo8gbf42_fxuGYweYA&oe=6A0B5776","likeCount":5011,"commentCount":328,"playCount":337952},{"id":"3897946163175031286_260462810","shortcode":"DYYSWIZpQH2","mediaType":"video","caption":"Big Cat’s Fyre Fest of the week is that Russillo accepted the CP3 Finals banner","takenAt":1778891400,"url":"https://www.instagram.com/p/DYYSWIZpQH2/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/688073997_1612709369810275_5998012962297229121_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gFQ_6uCKoaP_PT1jMTEczpzQe2-4RvItgj1AaV_aDHb9W5Arid95um0ZzQxUT_9tVU&_nc_ohc=_ejAQDvRUg0Q7kNvwE2zkCE&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_Af4q2J6xxdcYB0W7Y6Zx8XkAlldfQCxmdbw1vBNkVHakBQ&oe=6A0F4D3C&_nc_sid=ee9879","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/696727600_1689872172147728_1091342014164330912_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=QJ7pi-I1D84Q7kNvwHmfchy&_nc_oc=Adr8DdIR-5ZyLzM4s7Yitzxx9jfJnLcJPigpfW9UE2PQUhEB_bO61RIBIK3BlRAfdZI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_ss=7a22e&oh=00_Af4yOmtQokXxBhR1qqj8LLSKOZWbjT2gage_9rOFQCRtkw&oe=6A0F2AAF","videoUrl":"https://scontent-iad6-1.cdninstagram.com/o1/v/t2/f2/m86/AQMD1mUjc773FymV5ZDqFpx7WJSjoHp-pkTBjbfCvScRJOlDfctpkd56T6U6aA1ni3cxqYB5O2KGefcUfWEMpepwAKkbQZ8R_aXnZtg.mp4?_nc_cat=106&_nc_sid=5e9851&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_ohc=d9ptpf59FdAQ7kNvwHX4tib&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MjY5Nzc3MTQ4OTUxNzg5ODUsImFzc2V0X2FnZV9kYXlzIjoxLCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NjUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=a5ce0cbabb7ebb14&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC81RjQ5Mzg3NjJDNjEwRThBNDIyNjE2OUIyNjU0QTlBNl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzMxNEU2QzVBMDgyM0VDNzVERjQ5MUUzQTVGOEMyMDkzX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbSs-6S14XsXxUCKAJDMywXQFB9wo9cKPYYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=VlLUVqYu_drrIBa6bb-nmQ&_nc_zt=28&_nc_ss=7a22e&oh=00_Af4ZrHFWG_iR2YPGIIA4kilM83WQRFSpFJcEFwG8CdkPhg&oe=6A0B3443","likeCount":604,"commentCount":5,"playCount":160292}],"page":{"nextCursor":"3897946163175031286_260462810","hasMore":true}},"meta":{"requestId":"req_f034548e-a2b9-44bf-80be-f209197abf08","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","posts":[{"id":"3599731065704772932_260462810","shortcode":"ABCdefGhIjK","mediaType":"image","caption":null,"takenAt":1743000000,"url":"https://www.instagram.com/barstoolsports/p/ABCdefGhIjK/","displayUrl":"https://example.com/page2.jpg","likeCount":120,"commentCount":3}],"page":{"nextCursor":"3599000000000000000_260462810","hasMore":true}},"meta":{"requestId":"req_01example_page_2","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","posts":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"private_restricted":{"value":{"data":{"lookupStatus":"private","posts":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_private","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 handle, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/profiles/{handle}/reels":{"get":{"tags":["Instagram"],"summary":"List Instagram profile reels","description":"Get Reels from a specific Instagram profile.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"When `lookupStatus` is `found`, an empty `data.reels` page with `hasMore: false` can mean a public profile with no reels in range. When `lookupStatus` is `not_found`, reels will be empty by design.","disambiguation":"Use `data.lookupStatus` for the domain outcome; call `GET /v1/instagram/profiles/{handle}` when you need full profile cards and related fields."},"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":"Instagram handle whose reels should be listed."},"required":true,"description":"Instagram handle whose reels should be listed.","name":"handle","in":"path"},{"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":"Instagram reels for the requested profile page. Inspect `data.lookupStatus` to interpret empty `data.reels` and not-found outcomes.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether reels could be listed for this handle."},"reels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram media id for this reel."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode used in the Instagram reel URL."},"caption":{"type":"string","nullable":true,"description":"Caption text when Instagram provides one."},"takenAt":{"type":"integer","description":"When the reel was taken or posted (Unix epoch seconds)."},"url":{"type":"string","minLength":1,"description":"Canonical public Instagram URL for this reel."},"displayUrl":{"type":"string","description":"Primary display image URL when available."},"thumbnailUrl":{"type":"string","description":"Thumbnail or cover image URL when available."},"videoUrl":{"type":"string","description":"Direct video URL when a playable URL is available."},"likeCount":{"type":"integer","minimum":0,"description":"Like count when Instagram exposes it."},"commentCount":{"type":"integer","minimum":0,"description":"Comment count when Instagram exposes it."},"playCount":{"type":"integer","minimum":0,"description":"Play or view count when Instagram exposes it (Instagram-only views when distinguishable)."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Width and height when available."},"owner":{"type":"object","properties":{"platformUserId":{"type":"string","description":"Instagram numeric user id for the reel owner when present."},"handle":{"type":"string","description":"Instagram username for the reel owner when present."},"displayName":{"type":"string","description":"Display name for the reel owner when present."},"avatarUrl":{"type":"string","description":"Profile image URL for the reel owner when present."},"verified":{"type":"boolean","description":"Whether Instagram marks the reel owner as verified."}},"description":"Reel owner metadata when Instagram exposes it on the media item."}},"required":["id","shortcode","caption","takenAt","url"],"description":"A single Instagram reel in a profile reels page."},"description":"Instagram reels for the requested profile page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass as `cursor` in the next request when more reels are available."},"hasMore":{"type":"boolean","description":"Whether another page of reels is available from Instagram."}},"required":["nextCursor","hasMore"],"description":"Pagination state 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":{"first_page":{"value":{"data":{"lookupStatus":"found","reels":[{"id":"3897898354242677216_258288542","shortcode":"DYYHea3Nung","caption":"What a night hung ched today but absolutely worth it. This was my hungover routine. Iceman is slapping so hard in toronto rn. Fav track rn is too hard 4 the radio. May pop out tn and find light skin sweety i met last night","takenAt":1778885863,"url":"https://www.instagram.com/reel/DYYHea3Nung/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/695807295_2038909213674039_4320859148367351898_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=gkA0vt26qh4Q7kNvwFBQKZM&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af6EBsPWT-fGCBiRaTVZXLr0C5hzHsZPtz-Bk5-8HXXwQA&oe=6A11CD30&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/687035740_4254060031520396_5371670621372751871_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=104&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=cEXArk5p9hUQ7kNvwGlXmby&_nc_oc=AdqdjboUAskMSqAduReLbHEatx-gOm-kktOxmN-5ea6kwoNnzt9Lnu_pKDyGYgvYCdg&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af6TGzdJ9CGlfyYUZGKMeYck5CXK5ku9fYnAMdyUfT6B7Q&oe=6A11CC56","likeCount":3,"commentCount":297,"playCount":699906,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3897218521384856943_258288542","shortcode":"DYVs5jLN61v","caption":"Having a gay assistant is the best. Time to go slap ICEMAN all night 🧊","takenAt":1778804796,"url":"https://www.instagram.com/reel/DYVs5jLN61v/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/696012313_980022788055812_8620214781639165163_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=dfb92Fwf9lUQ7kNvwHWHnoI&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af731oAlb8qgDq6te3LUS4oNkmbpitSmkx_4LudTAMqZQg&oe=6A11C995&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/689563027_1679925646461993_8709916557377315055_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=sf3wDGzopg4Q7kNvwEnE4Qr&_nc_oc=Ado12_zD_3cBIPwHJzXd0G_HcB7gOdlti7X-xZ1EznXj0PqqU41rRlhgENsmJhAz0Ak&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af7tQK4L-quZGIVNhwpuhgpWAi66gpJ3WAxG6482gpdDyw&oe=6A11C9EB","likeCount":3,"commentCount":418,"playCount":959286,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896874769885512667_258288542","shortcode":"DYUevTpNUPb","caption":"What devices these manz got they can just open up your whip holy 😭","takenAt":1778763871,"url":"https://www.instagram.com/reel/DYUevTpNUPb/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/686939473_1524630519208959_8626730885696769019_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=ELlmk9Ivre8Q7kNvwEA0CLA&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af5L5cOpKlSgSwrIyLhcUbiDPZbFoynfFgZpXpn52GOoeQ&oe=6A11B677&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/694735536_961469546625505_5182574548026002257_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=100&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=d34XB28Ayk8Q7kNvwE4yRh0&_nc_oc=AdpwA2ogcktvtbDpN_gekJtBIjIROpN8wNmm6rmrkUcpxaoGWIZUWa2zbhvLJniBIMo&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af6McYY2i-q9Yj-IMOrLSOpLNjtLnMq4Y4P6ViWrdaiDDw&oe=6A11D32B","likeCount":3,"commentCount":773,"playCount":1367294,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896437032363744310_258288542","shortcode":"DYS7NYzt9w2","caption":"Cops said they tracked down the car from the GPS at the rental company. YNs ditched the car took nothing and left the car untouched 😂 they must have shit themselves when they saw my post. Cop was a fan and likes to golf i wanna go with her tomorrow. What a beauty. Seriously tho i love coming home to canada but fuck getting your car stolen out of your fucking driveway is pretty wild. And of course it was a fucking brampton man 😂 what a world man. SHOUTOUT PEEL POLICE","takenAt":1778711921,"url":"https://www.instagram.com/reel/DYS7NYzt9w2/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/695973513_1351435583503830_5014684217114848095_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=LEx5NwUwbMYQ7kNvwEcSAnD&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af79KTSs1DMKvsMn1RLGsgODT12dyVmtcqTZyIuhShui9g&oe=6A11CFA1&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/689264758_841159289036984_4298129892683727900_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=101&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=tRWpPZGnVcoQ7kNvwEvuiu0&_nc_oc=AdqOdKwAwuiaSgmNWD2myOjiPsxZSdq9s-kx3eoX3WdwiodiM7JdjNKJoXSL3dtSrtw&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af4QOLvYd9Al1uiO0opHt_L1mYflhBWyNEmsyWdqmaXpwg&oe=6A11BCA2","likeCount":3,"commentCount":793,"playCount":1762990,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896382162025675454_258288542","shortcode":"DYSuu60tXq-","caption":"Cant make this shit up 😂😂😂 fucking brampton manzzz","takenAt":1778705082,"url":"https://www.instagram.com/reel/DYSuu60tXq-/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/698464219_1152661231268318_2389869225679191572_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=30KntMa91BUQ7kNvwFnzHy3&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af5oR5IIqzgSMboijS6uR8el8dPuQNfTpByFzqNGO_uqVA&oe=6A11A47A&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/689497888_1710757596728345_8271416854489596162_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=108&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=l33yA5msSw4Q7kNvwFXh0a2&_nc_oc=Adrvh2kbJaxXHwWq7hNOIjcq8jpbtIMttehkeozQujNB7Ppf1o4CnXNRO4TVjJrLHI0&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af5q6ygwle20Xz7euZtZccR3kkbE-87xzbq8bIKveRjhCw&oe=6A11BFAE","likeCount":3,"commentCount":1241,"playCount":1648258,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896297574674842125_258288542","shortcode":"DYSbgAttcIN","caption":"Big dog at the end looks suspicious 🕵️ 🤔","takenAt":1778694997,"url":"https://www.instagram.com/reel/DYSbgAttcIN/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/671822148_2060287911567061_4918239748274436321_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=WVKC6yivL8gQ7kNvwFRc1jh&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af7oo-dHAYtZzw_SyA5k54RCyYLp9SEBsHo-nNNpQoqKgA&oe=6A11C7CA&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/687675299_938909812479845_2751984074751610248_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=Jx-_UL7NqAMQ7kNvwHucBdC&_nc_oc=AdpQ_8sn8AueWDPAnNAeCJA_LWKwkb327GcdT-3NnJufKb-ZnK0qWSHkp1u93y7XqT0&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af43yTuGib0vMZlKvwSzHuj5FOJVXWZiTd0Qsw_LEEgiFg&oe=6A11BB13","likeCount":3,"commentCount":243,"playCount":583629,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896239169251660026_258288542","shortcode":"DYSOOGbNVD6","caption":"Never thought id cancel a tee time because of YNs @seanzy6nine","takenAt":1778688136,"url":"https://www.instagram.com/reel/DYSOOGbNVD6/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/696724593_1016590417991641_17567034558746411_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=flJTor7T92sQ7kNvwHZN870&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af6zAjmoeYdqFtCKPPNn6xnYtGuW60tXCeZLmRbmIPQnKA&oe=6A11C4B3&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/691556365_2082798218932256_3822553781309672067_n.jpg?stp=dst-jpegr_e15_tt6&_nc_cat=102&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5oZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=EjaFPXO7y2EQ7kNvwHLKtzc&_nc_oc=AdofUcgP7_hrTe8jpG4k3sxaPGDxY-Sc3G-XWXbEQ8xcZN3pz2h0XD5jBoZUHQILiks&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&se=-1&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af47u098t0XYZJxMz5LX2F0FJ1bg_bBoJvaqdFVa8_qTWw&oe=6A11AC9B","likeCount":3,"commentCount":927,"playCount":1526295,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896139717287555850_258288542","shortcode":"DYR3m4kNzMK","caption":"I just want my sticks back 😭","takenAt":1778676345,"url":"https://www.instagram.com/reel/DYR3m4kNzMK/","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/688322618_1868808550465099_7442575853874847569_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=KOmQSOvyG24Q7kNvwE4428S&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af7LKU6NN9K7m2oPM3Ipi0LSjx17bFUGfQWQaxyvCMjblQ&oe=6A119F7B&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.71878-15/672996134_1540420467388515_2265780809189332321_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=102&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=Uqnmrs4ceF0Q7kNvwHp7TZ_&_nc_oc=AdrE3gGhMEn30b-jwqqH4iUc9yJcAqOB65wfkrgYqMPr-0XNR85A7TsI8D77vCg_86E&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af5VI7gJdVXudxwCn62wSAdmymKnKhH0c1wfo4EqO6swdA&oe=6A11A33B","likeCount":3,"commentCount":719,"playCount":1860331,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3896096256555268531_258288542","shortcode":"DYRtucmtLmz","caption":"Rental car stolen in nice area in canada middle of night with 2 sets of fucking Titliest sticks inside cant make this shit up","takenAt":1778671134,"url":"https://www.instagram.com/reel/DYRtucmtLmz/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/696836184_1515576566844011_3409580425068169869_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=YPgMGWBsItkQ7kNvwFtzBeH&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af6Hc2ymMw26z463BHW3wSg10U4jjxqslIaPpN8DQYFMvw&oe=6A11B88E&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/695254791_1481397163443796_5231077232576584782_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=101&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=buGTXtbNMsEQ7kNvwGO93do&_nc_oc=AdoMY2rpxYJIsfedfPd6gxrvFTbS9IXGt4J7FXIzZ7U_wweCvsx3jPOBm4-vWcCtw9U&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af6vu_yCKslQNfaTVzLmkM7f1O29JDRskA2PEQkUOV3G8Q&oe=6A11B413","likeCount":3,"commentCount":3359,"playCount":2824603,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3891995368832240671_258288542","shortcode":"DYDJSrStgwf","caption":"And hughes is somewhere wheeling Tate McRae were down bad but .. a bets a bet 🇨🇦","takenAt":1778182091,"url":"https://www.instagram.com/reel/DYDJSrStgwf/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/686319255_2513148662479035_3758156896855374291_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=1m5ZeruG5bAQ7kNvwHnLMaa&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af7r29ZOiycOjmGtYRNnOp7NXPsSLB21OiMzqbXMcCEBaw&oe=6A11C1B1&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/682683849_2061111565282378_9192745804776763278_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=108&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=gCqr2kJBWmIQ7kNvwGMC6Cj&_nc_oc=AdpVzoNxdtJyVNbRhjIKSxQuyZr1PwQJWGPBl50hmRSzG0ARAk-VEjG0etpGxSqrd30&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af4fSKk2gOMgVURS1V74r5LCLvke6iw3RFfWq_BjhqzgzQ&oe=6A119DE9","likeCount":3,"commentCount":826,"playCount":1575680,"owner":{"platformUserId":"258288542","handle":"kyle","displayName":"Kyle Forgeard","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/275794200_205137765166671_2896936172141337239_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=n3TUuUXv3L4Q7kNvwFYLxY9&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af4uM0htXh5MfJoVOtPElNKmGtWe3_H0CAzurOue_en_Xw&oe=6A119DC6&_nc_sid=c024bc","verified":true}},{"id":"3876701338960657411_986227524","shortcode":"DXMz1QBB_wD","caption":"At least he cleaned up the stall 😂♿️","takenAt":1776358800,"url":"https://www.instagram.com/reel/DXMz1QBB_wD/","displayUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-15/670891922_18589011307051525_1369645361145887175_n.jpg?stp=c0.280.720.720a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=79jwTTSa-fcQ7kNvwEcC05v&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af59tMQMEoICZwNTK3CepExzwtd4o_emYje-nmXmh5_bkA&oe=6A11B7BF&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/671267951_1955910395012528_1376988891561321073_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=T8TZj82hVTkQ7kNvwH4yiOY&_nc_oc=AdrXH0R8tFVx3_b9ZDTAt2-UyY0lnAzj6FZTtXI8gkvw_5dFXRgVH_S8rhNfzawzxEg&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af6TYTubveo6lwdWdaNvOW1Pi2i01O0EegklhwZgiXUcDw&oe=6A11B4E5","likeCount":95877,"commentCount":847,"playCount":3317747,"owner":{"platformUserId":"986227524","handle":"nelkboys","displayName":"NELK","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/139829295_485163762474597_3857552590533108128_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=UdWsaNVUpygQ7kNvwHb03cE&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af6iWDcgvf9kWK-FloQVtyJ0K0GREjT1kd4rqw1OaRO8Kg&oe=6A11B8C9&_nc_sid=c024bc","verified":true}},{"id":"3876670745254753382_50912385720","shortcode":"DXMs4DaDvRm","caption":"Not the best start from the ladies tees 😂\n\n#roadtoscratch #120days","takenAt":1776356288,"url":"https://www.instagram.com/reel/DXMs4DaDvRm/","displayUrl":"https://scontent-iad3-2.cdninstagram.com/v/t51.71878-15/671079938_2460116497840583_2191498507305905413_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=3clKO93qaAcQ7kNvwGFfAlJ&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af634Y8OH4_5VTK-jdBkZjC03x3HQN_VN05F0MTyoilw1Q&oe=6A11D3D7&_nc_sid=c024bc","thumbnailUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.71878-15/654891227_888425754250844_2104769515022055160_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=110&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=OJbgdE1jddQQ7kNvwGlo-J5&_nc_oc=Ado-ATplHVDWVywpdRubAAQ0kuP0gHpglMFezNg8GSTlWwGPcS7waEA4VitgATSneHA&_nc_ad=z-m&_nc_cid=4&_nc_zt=23&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&_nc_ss=7a22e&oh=00_Af6RI1CFdEecVWLFfKHaWobWiFDlQiOd1YuWU576LodVFw&oe=6A11A823","likeCount":3,"commentCount":229,"playCount":552897,"owner":{"platformUserId":"50912385720","handle":"thefullsendgolf","displayName":"Full Send Golf ⛳️","avatarUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.2885-19/479437624_1150727296838737_666723217246690913_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFtFNBv3ROGrGceN0qC9mdyFYqoS4gZ6mYIDXLx8_-67O0qZEvhcwsXCYQCaEmpZZI&_nc_ohc=5tkIod0CfwIQ7kNvwFkobx4&_nc_gid=gWGgYB1wJYKCLR9iLjeoCQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_Af6Gmxoy72Jja8HmWN4fCJ7mHq_WFtPnkZscsZZlnARQXg&oe=6A11BDB7&_nc_sid=c024bc","verified":true}}],"page":{"nextCursor":"QVFEM25uZFlXT0ZKbFI3OXp1VHFQUUp5WmhYRXE5bUlBdjk5bFlEd1ZFYkRsTVYteHFOenFKNmJHYUNQOEplZkM4V2dPQjlDOG5OdVMwSmlPMGswalVTOQ==","hasMore":true}},"meta":{"requestId":"req_01example_reels_page_1","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","reels":[{"id":"3599731065704772932_260462810","shortcode":"ABCdefGhIjK","caption":null,"takenAt":1743000000,"url":"https://www.instagram.com/reel/ABCdefGhIjK/","displayUrl":"https://example.com/page2.jpg","likeCount":120,"commentCount":3,"playCount":50000}],"page":{"nextCursor":"cursor-page-3-token","hasMore":true}},"meta":{"requestId":"req_01example_reels_page_2","creditsCharged":1,"version":"v1"}}},"last_page":{"value":{"data":{"lookupStatus":"found","reels":[{"id":"111_222","shortcode":"LastReel1","caption":null,"takenAt":1700000000,"url":"https://www.instagram.com/reel/LastReel1/","likeCount":10},{"id":"333_444","shortcode":"LastReel2","caption":null,"takenAt":1699000000,"url":"https://www.instagram.com/reel/LastReel2/"}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_reels_last","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","reels":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_reels_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","reels":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_reels_nf","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/profiles/{handle}/highlights":{"get":{"tags":["Instagram"],"summary":"List Instagram profile highlights","description":"List story highlight albums for an Instagram profile.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"When `lookupStatus` is `found`, an empty `data.highlights` list can mean the profile has no visible story highlight albums. When `lookupStatus` is `not_found`, highlights will be empty by design.","disambiguation":"Use `data.lookupStatus` for the domain outcome; call `GET /v1/instagram/profiles/{handle}` when you need full profile cards and related fields."},"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":"Instagram handle whose story highlight albums should be listed."},"required":true,"description":"Instagram handle whose story highlight albums should be listed.","name":"handle","in":"path"}],"responses":{"200":{"description":"Instagram story highlight albums for the requested profile. Inspect `data.lookupStatus` to interpret empty `data.highlights` and not-found outcomes.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether highlight albums could be listed for this handle."},"highlights":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram highlight album id."},"title":{"type":"string","nullable":true,"description":"Album title when Instagram provides one."},"coverThumbnailUrl":{"type":"string","description":"Cover thumbnail URL when available."},"croppedCoverThumbnailUrl":{"type":"string","description":"Cropped square cover thumbnail URL when available."},"owner":{"type":"object","properties":{"platformUserId":{"type":"string","description":"Instagram numeric user id for the album owner when present."},"handle":{"type":"string","description":"Instagram username for the album owner when present."},"avatarUrl":{"type":"string","description":"Profile image URL for the album owner when present."}},"description":"Album owner metadata when Instagram exposes it on the album."}},"required":["id","title"],"description":"A single Instagram story highlight album."},"description":"Story highlight albums for the requested profile."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor for a next page when pagination is supported. Always null for this endpoint."},"hasMore":{"type":"boolean","description":"Whether another page is available. Always false for this endpoint."}},"required":["nextCursor","hasMore"],"description":"Pagination state for the current response."}},"required":["lookupStatus","highlights","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","highlights":[{"id":"17929440964811872","title":"Operation Chad","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/555003756_18043662608392639_57526329583388619_n.jpg?stp=c0.455.1170.1170a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=TW9As2uQM9YQ7kNvwEalIvv&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af7JgfAU_kRlIzAqx-W7oZSolXODGikMloDrLp3ffypBVw&oe=6A135C57&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/555003756_18043662608392639_57526329583388619_n.jpg?stp=c0.455.1170.1170a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=TW9As2uQM9YQ7kNvwEalIvv&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4DZ6NcnjMkFsLWJDah4iPwfAYn8gcC9X6I56992HaDIQ&oe=6A135C57&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"18014620351917534","title":"Basketball 🏀","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-15/491442186_18470708683073416_9185856987124145503_n.jpg?stp=c0.499.1284.1284a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=4_Nufr3R7FsQ7kNvwH6lSTH&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4OzUFkWFe2m2TgFHNc01cFzeOd1lWto3_jv3PaFz5UOQ&oe=6A134A02&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-15/491442186_18470708683073416_9185856987124145503_n.jpg?stp=c136.679.1096.1096a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=4_Nufr3R7FsQ7kNvwH6lSTH&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4Y3H6-7ooqq5ZjLpeWrKajKLvpqQSyYvVTWqjz-3Zzhg&oe=6A134A02&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"18012869968809469","title":"Soccer ⚽️","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/568644232_18069553286371197_5555425816524544741_n.jpg?stp=c0.499.1284.1284a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=GzkWibFP38IQ7kNvwEhSDvg&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af5mPhrMkqEvTz0-kRg_XpoQHF_R5ln_D_zXOAyS5ZlNQQ&oe=6A135E70&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/568644232_18069553286371197_5555425816524544741_n.jpg?stp=c62.577.1194.1194a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=GzkWibFP38IQ7kNvwEhSDvg&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af6kDI25lzbSvGu7A6h1JyQGpLEE3Ly5F8h0HIO9sJNdnA&oe=6A135E70&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"18057230152936595","title":"Beast Games","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/554089418_17941279977062985_4766430900432926925_n.jpg?stp=c0.499.1284.1284a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=MTkVpdrUmwYQ7kNvwEXx18o&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af7LqNQcQtNEWme2CViyrDhnsoAOfP_44luft7DT7kA4hQ&oe=6A135380&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-15/470945137_1145474977294133_7244034073377400225_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=gG5ASRjQ-jwQ7kNvwGqetIQ&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af6fYNGnD718rvrqsab2kYQlYeEoQMGB9ahqQas-ff0Z9Q&oe=6A134798&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"18009512485955420","title":"Cool Peeps","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/554351099_17974707077926724_8432526724818146483_n.jpg?stp=c0.499.1284.1284a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=bOtZxLL8wwEQ7kNvwGxTQry&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4979GGTZvfj8OW8CqtUuWYu3am9HHq_QQkmA6Um7ts5g&oe=6A134545&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/554351099_17974707077926724_8432526724818146483_n.jpg?stp=c76.441.1056.1056a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=bOtZxLL8wwEQ7kNvwGxTQry&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4beF7F6SmQoSfIn1PIPRN5YX9aHApQKS2pbY8b1v4Xsw&oe=6A134545&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"18032721037413267","title":"Feastables","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/573551832_18090918976917474_8261231922762285310_n.jpg?stp=c0.458.1179.1179a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=GrysrQgAiIgQ7kNvwEpPLHX&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af5EHikSc4D2jd49LfaKFV13R_l7A01VpUmXHSRrbEtmEA&oe=6A134CA4&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-15/428490943_374761202080707_8006701650980724226_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=F6jFX-Zw5MIQ7kNvwHF9tzl&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af6-KSegsOTd-H9e_s1ZKaFvrznzfr5MdhkojZd_dQalZg&oe=6A1355F5&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"17998502645527909","title":"🇮🇳","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.71878-15/465690882_3854423704831609_1531686886674372123_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=MrSNUSpPpzgQ7kNvwGuNd5c&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af5uGwlXOXJEt1EigE_vmGwG38uvDZdJ0YWR3uraIHNAHg&oe=6A134FEC&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-15/466565633_8923619171019643_3590624605488027858_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=05rUsvTUgz8Q7kNvwG3ezSm&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4N39avY2ac6o5vRwg7L0WH7W60vvGwHSQr_znW7CLFSA&oe=6A13460A&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"17987606483520330","title":"Football 🏈","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/584396356_18374917891150576_6740794773927239237_n.jpg?stp=c0.499.1284.1284a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=DBtYPn1VvnAQ7kNvwFDyqgu&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4O0R5I8hP_MmrIWlh5qNeguwfJy2c_ljffMnYxWw1u0w&oe=6A13636B&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/584396356_18374917891150576_6740794773927239237_n.jpg?stp=c220.493.878.878a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=DBtYPn1VvnAQ7kNvwFDyqgu&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af50jVa-Sv-DoNyGDQjmiT301MuUggDSSm956THsGIlDlA&oe=6A13636B&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}},{"id":"17861723542385035","title":"Baseball ⚾️","coverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.71878-15/553377444_1139105744768649_9122747562193446257_n.jpg?stp=c0.437.1125.1125a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=sJkNY3ghgeUQ7kNvwHVjqM4&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af6ke2wuRlTRyRf7nw-IDBIi9oZ2B8CmEbdnS6i4trFHxw&oe=6A134A59&_nc_sid=94fea1","croppedCoverThumbnailUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.71878-15/553377444_1139105744768649_9122747562193446257_n.jpg?stp=c25.729.742.742a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=sJkNY3ghgeUQ7kNvwHVjqM4&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af47c1mf_4ROQt9DaHovHD7zZCJk1laoGysaW8lDswDiOQ&oe=6A134A59&_nc_sid=94fea1","owner":{"platformUserId":"2278169415","handle":"mrbeast","avatarUrl":"https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/31077884_211593632905749_1394765701385814016_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gEFsbPfqUD-w_CFhM9u0wxlQRscz-2YvEh--f_AdfsPLLTRW1mgbLgcQqfWvLbgLAY&_nc_ohc=6cN6_zHR0hkQ7kNvwGzgV3l&_nc_gid=Moru93K1hgNVo6WIIhYDgg&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_Af4hrVTESfihIJpfcl6KcIaX8IPKJuSedPb0v3c2vRPdZQ&oe=6A1350CF&_nc_sid=94fea1"}}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_highlights_found","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","highlights":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_highlights_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","highlights":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_highlights_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/highlights/{highlightId}":{"get":{"tags":["Instagram"],"summary":"Get Instagram highlight","description":"Get stories from a saved Instagram highlight.","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","pattern":"^\\d+$","description":"Numeric Instagram highlight id from a highlight URL."},"required":true,"description":"Numeric Instagram highlight id from a highlight URL.","name":"highlightId","in":"path"}],"responses":{"200":{"description":"Highlight details (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 highlight was resolved."},"highlight":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Instagram highlight id."},"title":{"type":"string","nullable":true,"description":"Highlight title when available."},"createdAt":{"type":"integer","nullable":true,"description":"Unix timestamp when the highlight was created, when available."},"latestItemAt":{"type":"integer","nullable":true,"description":"Unix timestamp of the latest story item in the highlight, when available."},"mediaCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of story items reported for the highlight."},"cover":{"type":"object","nullable":true,"properties":{"mediaId":{"type":"string","description":"Instagram media id for the cover."},"url":{"type":"string","nullable":true,"description":"Cover image URL."},"width":{"type":"integer","nullable":true,"minimum":0,"description":"Cover image width in pixels when available."},"height":{"type":"integer","nullable":true,"minimum":0,"description":"Cover image height in pixels when available."}},"description":"Highlight cover image when available."},"owner":{"type":"object","nullable":true,"properties":{"platformUserId":{"type":"string","description":"Instagram numeric user id."},"handle":{"type":"string","minLength":1,"description":"Instagram username without a leading @."},"fullName":{"type":"string","nullable":true,"description":"Display name when available."},"verified":{"type":"boolean","description":"Whether the account is verified."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile picture URL when available."},"privateAccount":{"type":"boolean","description":"Whether the account is private when known."}},"description":"Highlight owner when available."}},"required":["id","title","createdAt","latestItemAt","mediaCount","cover","owner"],"description":"Highlight metadata when found."},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram story item id."},"mediaId":{"type":"string","description":"Instagram media id when distinct from the item id."},"mediaType":{"type":"string","enum":["image","video","unknown"],"description":"Normalized story media type."},"takenAt":{"type":"integer","nullable":true,"description":"Unix timestamp when the story item was taken, when available."},"displayUrl":{"type":"string","nullable":true,"description":"Primary image URL when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"videoUrl":{"type":"string","nullable":true,"description":"Direct video URL when available."},"videoDurationSec":{"type":"number","nullable":true,"minimum":0,"description":"Video duration in seconds when available."},"hasAudio":{"type":"boolean","nullable":true,"description":"Whether the video item has audio when known."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Story media dimensions when available."},"linkStickers":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Link destination URL."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable link label when available."}},"description":"A link sticker attached to a story item."},"description":"Link stickers attached to the story item when available."}},"required":["id","mediaType","takenAt"],"description":"A story item in the highlight."},"description":"Story items in the highlight."}},"required":["lookupStatus","highlight","items"],"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","highlight":{"id":"17929440964811872","title":"Operation Chad","createdAt":1754706822,"latestItemAt":1754706822,"mediaCount":1,"cover":{"mediaId":"3574665805209826888_21393171","url":"https://example.com/highlight-cover.jpg","width":150,"height":150},"owner":{"platformUserId":"2278169415","handle":"mrbeast","fullName":"MrBeast","verified":true,"avatarUrl":"https://example.com/avatar.jpg","privateAccount":false}},"items":[{"id":"3565907942018983442_21393171","mediaId":"3565907942018983442","mediaType":"video","takenAt":1739309361,"displayUrl":"https://example.com/story-video-cover.jpg","thumbnailUrl":"https://example.com/story-video-cover.jpg","videoUrl":"https://example.com/story-video.mp4","videoDurationSec":55.85,"hasAudio":true,"dimensions":{"width":1080,"height":1920},"linkStickers":[{"url":"https://example.com","displayUrl":"example.com"}]},{"id":"3574665805209826888_21393171","mediaId":"3574665805209826888","mediaType":"image","takenAt":1745272279,"displayUrl":"https://example.com/story-image.jpg","thumbnailUrl":"https://example.com/story-image.jpg","dimensions":{"width":1080,"height":1920}}]},"meta":{"requestId":"req_01example_highlight","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","highlight":null,"items":[]},"meta":{"requestId":"req_01example_highlight_not_found","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid highlight id","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/search/reels":{"get":{"tags":["Instagram"],"summary":"Search Instagram Reels","description":"Search Instagram Reels by keyword with optional date filters and page-based pagination.","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 Instagram Reels."},"required":true,"description":"Search query text for Instagram Reels.","name":"query","in":"query"},{"schema":{"type":"string","enum":["last-hour","last-day","last-week","last-month","last-year"],"description":"Optional filter for when matching reels were posted."},"required":false,"description":"Optional filter for when matching reels were posted.","name":"datePosted","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"}],"responses":{"200":{"description":"Reels 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."},"reels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram media id for this reel."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode used in the Instagram reel URL."},"url":{"type":"string","minLength":1,"description":"Canonical public Instagram URL for this reel."},"caption":{"type":"string","nullable":true,"description":"Caption text when Instagram provides one."},"takenAt":{"type":"integer","description":"When the reel was taken or posted (Unix epoch seconds)."},"thumbnailUrl":{"type":"string","description":"Thumbnail or cover image URL when available."},"displayUrl":{"type":"string","description":"Primary display image URL when available."},"videoUrl":{"type":"string","description":"Direct video URL when a playable URL is available."},"videoDurationSec":{"type":"number","minimum":0,"description":"Video duration in seconds when available."},"hasAudio":{"type":"boolean","description":"Whether the reel includes audio."},"accessibilityCaption":{"type":"string","nullable":true,"description":"Accessibility caption when Instagram provides one."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"View count when Instagram exposes it."},"plays":{"type":"integer","minimum":0,"description":"Play count when Instagram exposes it."},"likes":{"type":"integer","minimum":0,"description":"Like count when Instagram exposes it."},"comments":{"type":"integer","minimum":0,"description":"Comment count when Instagram exposes it."}},"description":"Engagement metrics when Instagram exposes them."},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Width and height when available."},"owner":{"type":"object","properties":{"platformUserId":{"type":"string","description":"Instagram numeric user id for the reel owner when present."},"handle":{"type":"string","description":"Instagram username for the reel owner when present."},"displayName":{"type":"string","description":"Display name for the reel owner when present."},"avatarUrl":{"type":"string","description":"Profile image URL for the reel owner when present."},"verified":{"type":"boolean","description":"Whether Instagram marks the reel owner as verified."},"privateAccount":{"type":"boolean","description":"Whether the reel owner account is private."},"followerCount":{"type":"integer","minimum":0,"description":"Follower count when Instagram exposes it on the owner."},"postCount":{"type":"integer","minimum":0,"description":"Post count when Instagram exposes it on the owner."}},"description":"Reel owner metadata when Instagram exposes it."},"location":{"type":"object","nullable":true,"properties":{"id":{"type":"string","description":"Location id when Instagram provides one."},"name":{"type":"string","nullable":true,"description":"Location name when Instagram provides one."},"slug":{"type":"string","nullable":true,"description":"Location slug when Instagram provides one."},"addressJson":{"type":"string","nullable":true,"description":"Serialized address metadata when Instagram provides it."}},"description":"Tagged location when Instagram exposes it."},"audio":{"type":"object","nullable":true,"properties":{"artistName":{"type":"string","nullable":true,"description":"Attributed artist name when available."},"songName":{"type":"string","nullable":true,"description":"Attributed song or audio title when available."},"usesOriginalAudio":{"type":"boolean","description":"Whether the reel uses original audio."},"shouldMuteAudio":{"type":"boolean","description":"Whether Instagram indicates the audio should be muted."},"shouldMuteAudioReason":{"type":"string","nullable":true,"description":"Reason for muting audio when Instagram provides one."},"audioId":{"type":"string","nullable":true,"description":"Audio track id when Instagram provides one."}},"description":"Audio attribution when Instagram exposes it."},"isAd":{"type":"boolean","description":"Whether Instagram marks the reel as an ad."},"isAffiliate":{"type":"boolean","description":"Whether Instagram marks the reel as affiliate content."},"isPaidPartnership":{"type":"boolean","description":"Whether Instagram marks the reel as a paid partnership."}},"required":["id","shortcode","url","caption","takenAt"],"description":"A single Instagram Reel in a search results page."},"description":"Instagram Reels matching the search query for the requested page. Empty when no reels match."},"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 reels are available; otherwise null."},"hasMore":{"type":"boolean","description":"Whether another page of reels is available."}},"required":["currentPage","nextPage","hasMore"],"description":"Pagination state for the current response."}},"required":["query","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":{"sample":{"value":{"data":{"query":"dogs","reels":[{"id":"3723045213787686915","shortcode":"DOq6eV6iIgD","url":"https://www.instagram.com/reel/DOq6eV6iIgD/","caption":"Dogs are family","takenAt":1735626114,"thumbnailUrl":"https://example.com/thumb.jpg","displayUrl":"https://example.com/display.jpg","videoUrl":"https://example.com/video.mp4","videoDurationSec":75.7,"hasAudio":false,"metrics":{"views":21808,"plays":46018,"likes":3487,"comments":90},"owner":{"platformUserId":"70127159370","handle":"fetchmycamera_","displayName":"Mark | Dog Photographer","verified":true,"privateAccount":false,"followerCount":188406,"postCount":117},"location":{"id":"110103980565013","name":"Central Park, New York City","slug":"central-park-new-york-city"},"audio":{"artistName":"Oliver Max","songName":"Smiling Heart","usesOriginalAudio":false},"isAd":false,"isAffiliate":false,"isPaidPartnership":false}],"page":{"currentPage":1,"nextPage":2,"hasMore":true}},"meta":{"requestId":"req_01example_search_reels","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"query":"dogs","reels":[{"id":"3799150343414200124","shortcode":"DS5SxvLgbc8","url":"https://www.instagram.com/reel/DS5SxvLgbc8/","caption":null,"takenAt":1767101200,"metrics":{"plays":2905,"likes":268,"comments":17}}],"page":{"currentPage":2,"nextPage":3,"hasMore":true}},"meta":{"requestId":"req_01example_search_reels_page2","creditsCharged":1,"version":"v1"}}},"sparse":{"value":{"data":{"query":"coffee","reels":[{"id":"3651974801637369052","shortcode":"DKua7usReTc","url":"https://www.instagram.com/reel/DKua7usReTc/","caption":"Local coffee shop highlight","takenAt":1749569406,"metrics":{"plays":2905,"likes":268},"owner":{"handle":"brandonfromvegas","verified":false},"location":null,"audio":{"artistName":"brandonfromvegas","songName":"Original audio","usesOriginalAudio":true}}],"page":{"currentPage":1,"nextPage":2,"hasMore":true}},"meta":{"requestId":"req_01example_search_reels_sparse","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"zzzznotreal","reels":[],"page":{"currentPage":1,"nextPage":null,"hasMore":false}},"meta":{"requestId":"req_01example_search_reels_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/posts":{"get":{"tags":["Instagram"],"summary":"Get Instagram post or reel","description":"Get a single Instagram post or Reel.","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 post or reel."},"required":true,"description":"Link to the post or reel.","name":"url","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Optional two-letter region (country code) for request routing."},"required":false,"description":"Optional two-letter region (country code) for request routing.","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, returns permanent CDN URLs for media in `downloads`. Adds 10 credits (11 total including the base lookup)."},"required":false,"description":"When true, returns permanent CDN URLs for media in `downloads`. Adds 10 credits (11 total including the base lookup).","name":"downloadMedia","in":"query"}],"responses":{"200":{"description":"Post or reel metadata. Check `data.lookupStatus` for `found`, `not_found`, or `restricted`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found","restricted"],"description":"Whether the post or reel was resolved. Restricted covers age-gated or otherwise non-scrapable content."},"post":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Instagram media id."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode."},"url":{"type":"string","minLength":1,"description":"Canonical public Instagram URL for this media."},"caption":{"type":"string","nullable":true,"description":"Caption text."},"takenAt":{"type":"integer","description":"Unix timestamp when the media was taken or posted."},"accessibilityCaption":{"type":"string","nullable":true},"isAd":{"type":"boolean"},"isAffiliate":{"type":"boolean"},"isPaidPartnership":{"type":"boolean"}},"required":["id","shortcode","url","caption","takenAt"],"description":"Post details when found."},"owner":{"type":"object","nullable":true,"properties":{"platformUserId":{"type":"string","description":"Instagram numeric user id."},"handle":{"type":"string","minLength":1,"description":"Instagram username without a leading @."},"fullName":{"type":"string","nullable":true,"description":"Display name when available."},"verified":{"type":"boolean","description":"Whether the account is verified."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile picture URL."},"privateAccount":{"type":"boolean","description":"Whether the account is private."}},"required":["handle","verified"],"description":"Author when found."},"metrics":{"type":"object","nullable":true,"properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when Instagram exposes it."},"comments":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when Instagram exposes it."},"playCount":{"type":"integer","nullable":true,"minimum":0,"description":"Play or view count for video/reel content when available."}},"description":"Engagement metrics for the media."},"media":{"type":"object","nullable":true,"properties":{"mediaType":{"type":"string","enum":["image","video","sidecar","unknown"],"description":"Normalized media type."},"displayUrl":{"type":"string","nullable":true},"thumbnailUrl":{"type":"string","nullable":true},"videoUrl":{"type":"string","nullable":true},"videoDurationSec":{"type":"number","nullable":true,"minimum":0},"dimensions":{"type":"object","properties":{"width":{"type":"integer","minimum":0,"description":"Media width in pixels."},"height":{"type":"integer","minimum":0,"description":"Media height in pixels."}},"required":["width","height"],"description":"Dimensions for a media item."},"productType":{"type":"string","nullable":true,"description":"Product type when present."},"carouselChildren":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"shortcode":{"type":"string"},"displayUrl":{"type":"string"},"videoUrl":{"type":"string","nullable":true},"isVideo":{"type":"boolean"}},"description":"One child item in a carousel (sidecar) post."},"description":"Sidecar children when this is a carousel."}},"required":["mediaType"],"description":"Primary media payload for the post."},"downloads":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string","description":"Post or media id when present."},"originalUrl":{"type":"string","description":"Original Instagram CDN URL."},"cdnUrl":{"type":"string","description":"Permanent hosted URL when download succeeded."},"type":{"type":"string","enum":["image","video"],"description":"Asset type."}},"required":["originalUrl","cdnUrl","type"],"description":"A downloaded media file."},"description":"Permanent CDN URLs when `downloadMedia` was true and media assets are available."},"taggedUsers":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Tagged username."},"platformUserId":{"type":"string"}},"required":["handle"],"description":"A user tagged in the media."}},"coauthors":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1},"platformUserId":{"type":"string"},"verified":{"type":"boolean"},"avatarUrl":{"type":"string","nullable":true}},"required":["handle"]}}},"required":["lookupStatus","post","owner","metrics","media","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","post":{"id":"3672288292859749817","shortcode":"DL2lr7ouyW5","url":"https://www.instagram.com/p/DL2lr7ouyW5/","caption":"The blueprint to a better game. \n\nGet ready to outwork everyone in the Sabrina 3. The lightweight, versatile tool to build your game bucket by bucket.\n\nComing soon.","takenAt":1751990900,"accessibilityCaption":null,"isAd":false,"isAffiliate":false,"isPaidPartnership":false},"owner":{"platformUserId":"13460080","handle":"nike","fullName":"Nike","verified":true,"avatarUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.82787-19/551608484_18567162979020081_1135468084872726555_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zOTkuYzIifQ&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHUrXxLju9Q13cPTwTpVsBECV8dAmsIud1dW2jpYBoPp8oNjG11v7QI9Mjl5FdJ6hQ&_nc_ohc=kB7KXhZyE2kQ7kNvwHblXHz&_nc_gid=OtvfIrha3VxwZRPAOdLbKw&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af5yItrqaxJz_bS9tNLQvo7XopcQvhpC_pdvoTGw6-Mixg&oe=6A0F3E7A&_nc_sid=d885a2","privateAccount":false},"metrics":{"likes":64396,"comments":426,"playCount":null},"media":{"mediaType":"image","displayUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/516801724_18553367848020081_3981242735748825879_n.jpg?stp=dst-jpg_e35_p1080x1080_sh2.08_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gHUrXxLju9Q13cPTwTpVsBECV8dAmsIud1dW2jpYBoPp8oNjG11v7QI9Mjl5FdJ6hQ&_nc_ohc=Q2YIZvH6_IoQ7kNvwE06m8o&_nc_gid=OtvfIrha3VxwZRPAOdLbKw&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af51Vlyu_rKSoz1TlzjZmVoHa_73nFLgXLjpVn2Sg49bZA&oe=6A0F57DE&_nc_sid=d885a2","thumbnailUrl":"https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/516801724_18553367848020081_3981242735748825879_n.jpg?stp=c0.169.1350.1350a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_cat=109&_nc_oc=Q6cZ2gHUrXxLju9Q13cPTwTpVsBECV8dAmsIud1dW2jpYBoPp8oNjG11v7QI9Mjl5FdJ6hQ&_nc_ohc=Q2YIZvH6_IoQ7kNvwE06m8o&_nc_gid=OtvfIrha3VxwZRPAOdLbKw&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af6109_b-qVBcFmYhvHQUwhejvrEcjM-X2clwoZo7vQtNQ&oe=6A0F57DE&_nc_sid=d885a2","videoUrl":null,"videoDurationSec":null,"dimensions":{"width":1080,"height":1350},"productType":null},"downloads":[],"taggedUsers":[{"handle":"nikebasketball","platformUserId":"306787899"},{"handle":"sabrina_i","platformUserId":"18283022"}],"coauthors":[{"handle":"nikebasketball","platformUserId":"306787899","verified":true,"avatarUrl":"https://scontent-iad3-1.cdninstagram.com/v/t51.2885-19/476165648_562950269755237_6078768897318286594_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4zMjAuYzIifQ&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gHUrXxLju9Q13cPTwTpVsBECV8dAmsIud1dW2jpYBoPp8oNjG11v7QI9Mjl5FdJ6hQ&_nc_ohc=W9ojL9mMKzkQ7kNvwHwlyRE&_nc_gid=OtvfIrha3VxwZRPAOdLbKw&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af7rtOizCDcwFo1zB8gDXyCKo4oBuYh8eqDkKDCpSMvTFQ&oe=6A0F3423&_nc_sid=d885a2"}]},"meta":{"requestId":"req_b0afea53-45a7-4197-b753-e6451da410f0","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"owner":null,"metrics":null,"media":null,"downloads":[]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"restricted":{"value":{"data":{"lookupStatus":"restricted","post":null,"owner":null,"metrics":null,"media":null,"downloads":[]},"meta":{"requestId":"req_01example_restricted","creditsCharged":1,"version":"v1"}}},"download_media":{"value":{"data":{"lookupStatus":"found","post":{"id":"3672288292859749817","shortcode":"DL2lr7ouyW5","url":"https://www.instagram.com/p/DL2lr7ouyW5/","caption":"Example caption.","takenAt":1751990900,"accessibilityCaption":null,"isAd":false,"isAffiliate":false,"isPaidPartnership":false},"owner":{"handle":"nike","verified":true,"privateAccount":false},"metrics":{"likes":64418,"comments":425,"playCount":null},"media":{"mediaType":"image","displayUrl":"https://example.com/display.jpg"},"downloads":[{"postId":"DL2lr7ouyW5","originalUrl":"https://cdn.instagram.com/original.jpg","cdnUrl":"https://example.supabase.co/storage/v1/object/public/media_assets/instagram/DL2lr7ouyW5/3672288292859749817.jpg","type":"image"}]},"meta":{"requestId":"req_01example_dl","creditsCharged":11,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/posts/transcript":{"get":{"tags":["Instagram"],"summary":"Get Instagram post transcript","description":"Get the transcript for an Instagram 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 Instagram post or Reel whose transcript should be returned."},"required":true,"description":"Link to the Instagram post or Reel whose transcript should be returned.","name":"url","in":"query"}],"responses":{"200":{"description":"Transcript lookup result. Inspect `data.lookupStatus` for found and not-found outcomes.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether the media could be resolved for transcription."},"post":{"type":"object","nullable":true,"properties":{"url":{"type":"string","minLength":1,"description":"Public Instagram URL that was requested."}},"required":["url"],"description":"Post or Reel identity when the lookup resolved; otherwise null."},"transcripts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Instagram media id for this transcript row."},"shortcode":{"type":"string","minLength":1,"description":"Public shortcode for the media item in this transcript row."},"text":{"type":"string","nullable":true,"description":"Plain transcript text when available. Null means no transcript text was returned for this media item."}},"required":["id","shortcode","text"],"description":"Transcript text for one Instagram media item."},"description":"Transcript rows for the resolved media. Carousel posts may return more than one row when transcript data is available for multiple video items."}},"required":["lookupStatus","post","transcripts"],"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.instagram.com/reel/DHsD6HGqJhp/"},"transcripts":[{"id":"3597267389859272809","shortcode":"DHsD6HGqJhp","text":"Let's fry up the perfect Banh Xeo. Beautiful. Everybody. Shh. The perfect Banh Xeo. Let me show you my Banh Xeo."}]},"meta":{"requestId":"req_01example_ig_transcript","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"transcripts":[]},"meta":{"requestId":"req_01example_ig_transcript_nf","creditsCharged":1,"version":"v1"}}},"no_transcript":{"value":{"data":{"lookupStatus":"found","post":{"url":"https://www.instagram.com/reel/DIwZjShvKb7/"},"transcripts":[{"id":"3616502877016336123","shortcode":"DIwZjShvKb7","text":null}]},"meta":{"requestId":"req_01example_ig_transcript_null","creditsCharged":1,"version":"v1"}}},"carousel":{"value":{"data":{"lookupStatus":"found","post":{"url":"https://www.instagram.com/p/ExampleCarousel/"},"transcripts":[{"id":"1000000000000000001","shortcode":"ExampleOne","text":"First carousel video transcript."},{"id":"1000000000000000002","shortcode":"ExampleTwo","text":"Second carousel video transcript."}]},"meta":{"requestId":"req_01example_ig_transcript_carousel","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/instagram/posts/comments":{"get":{"tags":["Instagram"],"summary":"List Instagram post or reel comments","description":"Get comments on an Instagram 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 Instagram post or reel whose comments should be listed."},"required":true,"description":"Link to the Instagram 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"}],"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."},"likeCount":{"type":"integer","minimum":0,"description":"Like count on the comment."},"replyCount":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count for the comment thread when available; null when not reported."},"author":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Instagram username without a leading @."},"platformUserId":{"type":"string","description":"Numeric user id for the commenter when available."},"verified":{"type":"boolean","description":"Whether the commenter account is verified."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the commenter when available."}},"required":["handle","verified","avatarUrl"],"description":"Comment author."}},"required":["id","text","createdAt","likeCount","replyCount","author"],"description":"A single top-level comment on an Instagram post or reel."},"description":"Top-level comments for the resolved media."},"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":"18078568310424685","text":"❤️🔥All Sold x 100k pairs assorted. 😍🇿🇦🇿🇦🇿🇦🇿🇼🇿🇼🇿🇼🇪🇦🇪🇦🇪🇦💥💥💥💪💪💪 😍","createdAt":"2026-04-30T09:18:54.000Z","likeCount":0,"replyCount":null,"author":{"handle":"commizah","platformUserId":"919560940","verified":false,"avatarUrl":"https://scontent-dfw6-1.cdninstagram.com/v/t51.82787-19/657383964_18571289128008941_9200292387636388033_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=103&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=5_GTUmym0f0Q7kNvwEoIMFi&_nc_oc=AdrVLZJCY3tVuHVj_rJyDzOwTSKdwtBFevM8YpBijO2jQb_f6WAdO8rLzsVutqGF7X0&_nc_zt=24&_nc_ht=scontent-dfw6-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af6KNujuSPg1jVWxEjM37jtB-tYbKK4N_B4xJG7b5BaEoA&oe=6A0F33AF"}},{"id":"18140131012448239","text":"Next level ❤️❤️❤️","createdAt":"2026-04-08T02:41:29.000Z","likeCount":0,"replyCount":null,"author":{"handle":"alex_01a1","platformUserId":"4420519854","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.82787-19/607219469_18383391541151855_2473516392369085442_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=105&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=1l6VKHKoVMMQ7kNvwGp3ugL&_nc_oc=AdrpLYg_Eu8b1E_rL5YotdvbElNTHlxc4qupvh_rrbHB7BJaZn4f2hvKoCr2BBoKe0s&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af4VsZxvJX-KQZFaCoGbqwHALj0SRMI8uEq8bHk3JDj_Sw&oe=6A0F361F"}},{"id":"18111162352683666","text":"@nike , gostaria de saber por que os melhores tênis para treino em academia só têm versão masculina. E por que, @nike, os poucos tênis femininos para treino em academia são mais caros do que os masculinos? @nikefootball","createdAt":"2026-03-24T00:53:26.000Z","likeCount":0,"replyCount":null,"author":{"handle":"charlottecvo","platformUserId":"25920475","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.2885-19/461872697_429379063089636_3505472567468800239_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=109&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=Rfjy0AzsLCwQ7kNvwEypaeA&_nc_oc=AdoG2sxZeCtJ3fXeEeccsMcmO8k0RuwMNQ_Qgd0E28Su6B6GubblpFFzyjQudQpqPIk&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_ss=7ea8c&oh=00_Af7ujjthMJqugHtDG9kd4SwyNWGjSUJTNIyyCyT7-Nu0xw&oe=6A0F33F3"}},{"id":"18096927337817443","text":"why you dont take a picture to @cristiano","createdAt":"2026-03-22T22:53:56.000Z","likeCount":0,"replyCount":null,"author":{"handle":"hollacil.yy","platformUserId":"4181408017","verified":false,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.82787-19/655946172_18429456940136018_2521506786406611709_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=107&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=5kGcI8bgvJAQ7kNvwFDGCcD&_nc_oc=AdpZUor8c8mxG7s4mD2V6ajMGtq8wKYWJNhEZIn1GjfGLt50xV8xEJDUg5qz95imrUs&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af4-VYVy0qJVu-KC8IvMSiodvsbXL5cvaFYtuUOMDzcuHw&oe=6A0F525A"}},{"id":"17942585573996555","text":"Hast du schon mal bei Nike etwas bestellt? Hast du es zurück geschickt und das Geld nicht zurück bekommen weil Nike behauptet du hättest falsche Ware zurückgeschickt? Du hast nur noch Kontakt mit dem Inkasso Büro? Wenn ja, was hast du bist jetzt unternommen? Wenn nicht lass es dir eine Warnung sein bei Nike überhaupt noch etwas zu bestellen","createdAt":"2026-03-22T09:11:21.000Z","likeCount":0,"replyCount":null,"author":{"handle":"schirmannc","platformUserId":"72409400158","verified":false,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.75761-19/491454169_17859689268408159_659175001843207115_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=108&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=1EdrxUCyTeMQ7kNvwEzSjcb&_nc_oc=AdrWIYe88IjXi59evh8ChgkKWjSccNcPOhMZBPB5hUrYghUIFDzvrYMkstvrPzOrucY&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af70ZgIKnayPnEigfhvb8iSdZevQnTtySk4w8Ra4j1dGoA&oe=6A0F43F3"}},{"id":"18105074500700930","text":"How much","createdAt":"2026-03-21T20:32:45.000Z","likeCount":0,"replyCount":null,"author":{"handle":"ruslanusanovv","platformUserId":"72185122516","verified":true,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.82787-19/645789818_17898991059402517_1535496850511294110_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=100&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=4a9yKa3QkZEQ7kNvwEAo7El&_nc_oc=AdorTnY_5taDYcrchFZiN_9lac3sLfoiFT6DC8uXO-p9c5QJhDn13buHpItmCNq0rO4&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af7OLUood0VXbXC6kWM-psejRPgri2aFUHCQx-bl-WmROw&oe=6A0F354C"}},{"id":"17998563245712548","text":"Preciosos 😍😍","createdAt":"2026-01-11T07:42:59.000Z","likeCount":0,"replyCount":null,"author":{"handle":"olaystyles","platformUserId":"2860229966","verified":false,"avatarUrl":"https://scontent-dfw6-1.cdninstagram.com/v/t51.82787-19/642149387_18381617392093967_1390772295033217109_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=103&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=7vjIRujbJRUQ7kNvwFzeGHK&_nc_oc=Adp-HgcuYuGS0D3i3I7jJp4KsqroZemU5wz25qL_kFPN4OovMtqZU_4L_S-uMeIZJvA&_nc_zt=24&_nc_ht=scontent-dfw6-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af7hEP2a6gPSacXAODFj0WTfC7SxW2IR_2IIdxar3UrSZg&oe=6A0F4876"}},{"id":"18071803442530074","text":"🔥🔥🔥","createdAt":"2026-01-11T03:10:51.000Z","likeCount":0,"replyCount":null,"author":{"handle":"el_klvveoficial","platformUserId":"365916969","verified":false,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.82787-19/698324795_18584999647028970_8259802962592992179_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=107&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy44MTAuQzMifQ%3D%3D&_nc_ohc=NgISBBikBNIQ7kNvwEHQAMj&_nc_oc=AdrMWPkKM-UJdMjDfinOSWKHUwMfxKwe5qlgig33wpVZtjRWx0RXoPUH0Gd_aY7INks&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af7tZO0-n36sDeWI_1BjJRHzTQKSOey_iWpOCLWGhTcc1g&oe=6A0F4274"}},{"id":"17878375647460229","text":"Ok","createdAt":"2026-01-11T00:45:51.000Z","likeCount":0,"replyCount":null,"author":{"handle":"kerryherrera8","platformUserId":"8657448561","verified":false,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.82787-19/684661220_18262915807288562_4771994599203035820_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=104&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=oWsfgLun-ZEQ7kNvwE13Gxc&_nc_oc=AdovvBoNrl5eXbuY_M8LaBUxjULYH4O6tTPRtpmyJ3dmwAOvcuwxXZuPcHOiygrRUDE&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af4CXJrq16aLKpfCt9-ysO__I4fPbVxOMdf4O_OMXnbKgw&oe=6A0F4FC8"}},{"id":"18080420264182709","text":"@nike When u guys coming out with a Pickleball paddle ?","createdAt":"2026-01-09T03:24:21.000Z","likeCount":0,"replyCount":null,"author":{"handle":"rguzzi23","platformUserId":"46397888040","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.2885-19/154698883_3594620177313425_88380556257975007_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=105&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDc5LkMzIn0%3D&_nc_ohc=_7gkfUiBHFMQ7kNvwGHW787&_nc_oc=Ado0ltIO6JrDE1mUT36YStKPB1mTJWdHAH5HjXchNzEYUdl6DSZIR6Ginms3FOQGVxk&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_ss=7ea8c&oh=00_Af7CgyI3H19xMwxkqaGYGdsvquv_WST0qMe09dVcDJianw&oe=6A0F3D37"}},{"id":"17861558532491473","text":"Perfeito","createdAt":"2025-12-26T20:05:30.000Z","likeCount":0,"replyCount":null,"author":{"handle":"cristianesancho03","platformUserId":"30976370632","verified":false,"avatarUrl":"https://scontent-dfw5-2.cdninstagram.com/v/t51.82787-19/544872615_18076095137034633_6403221136540865272_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=100&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=XB_HrSBCi_4Q7kNvwGJvqg6&_nc_oc=Ado_kmV4FRhWd-xPryO9ijJisiKlor9GvkPqJ-E0NR8LNJC7_q55otk9VELjfkX54zg&_nc_zt=24&_nc_ht=scontent-dfw5-2.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af5Xohx-GNHVTsQ7Z18a9Sx3d2DZmnEpZbDEQ_ZkO0W-Yg&oe=6A0F30A8"}},{"id":"18098148139693566","text":"😍","createdAt":"2025-11-18T04:18:25.000Z","likeCount":0,"replyCount":null,"author":{"handle":"umesh_nomad","platformUserId":"4673089007","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.75761-19/504347652_18348550381153008_7366695783573748153_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=109&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=HOYpmoT1e4MQ7kNvwF3yI2p&_nc_oc=AdoQQO3LuECINdiDjd5C5mioxJlc2GiPT_aW6m6w47764IDir0Bzu1uMksqyP8fcNHc&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af5LhpBWKVWzbfOMX5OwOBSUSzVj5jT2sDyNEt5smZ62bQ&oe=6A0F4850"}},{"id":"18093412675842594","text":"Us only?","createdAt":"2025-11-15T23:33:31.000Z","likeCount":0,"replyCount":null,"author":{"handle":"checcobaroni","platformUserId":"40234098","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.2885-19/201268341_1412414962479193_1455601436517195596_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=109&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy45NjAuQzMifQ%3D%3D&_nc_ohc=pHOO5IoWudoQ7kNvwGOB7zy&_nc_oc=AdqkKBVASnX85KcIMTIsTC52CSzch3r0uDffAD13T9iyn_xSr4AUZqCYLdOSBEFy77s&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_ss=7ea8c&oh=00_Af6Jrc0en4jj55H0n_JnoCN9wYJ0ULVLaauzm6wsqq_TJA&oe=6A0F4E82"}},{"id":"18330697666230263","text":"Perfeito","createdAt":"2025-11-09T12:35:15.000Z","likeCount":0,"replyCount":null,"author":{"handle":"caipiralife.oficial","platformUserId":"61218945969","verified":false,"avatarUrl":"https://scontent-dfw6-1.cdninstagram.com/v/t51.82787-19/607720050_17958558624041970_6165740594707872902_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=103&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=Eh0EWO-ja8MQ7kNvwF8lW47&_nc_oc=Adpw0lxTrGi85gJ62upfHdJc9WKKX0fd-lnpivZ7YklZQq0SWe18BvdnWorC_PGALU8&_nc_zt=24&_nc_ht=scontent-dfw6-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af7Pb1c63jfzREkgqFqHKrJuxVkY3lRa_a6JOkG3xTT_7w&oe=6A0F3685"}},{"id":"18077899481162314","text":"I just love nike for its colour, comfort and light weight.... I will recommend this to all❤️❤️","createdAt":"2025-11-08T13:47:18.000Z","likeCount":0,"replyCount":null,"author":{"handle":"vickyjain477","platformUserId":"57264210240","verified":false,"avatarUrl":"https://scontent-dfw5-1.cdninstagram.com/v/t51.89012-19/573323465_1219825463302212_7278921664109726296_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=1&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy5DMyJ9&_nc_ohc=_4tC3MUfCWEQ7kNvwHDEiIS&_nc_oc=AdogDff5m7in70DvQ9w82yY1LuuRqfugNgmPnbdfqojPviFQh8BU_78n-fQ8QVHa4NI&_nc_zt=24&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_gid=PhVfq0WRdPIX2vsbL0ww3Q&_nc_ss=7ea8c&oh=00_Af46tDcSQrdfipO10M9J4FAIRyikzTQq4Q7DzZcHcCSyPw&oe=6A0F3AE2"}}],"page":{"nextCursor":"AQHS-6Rk4boRKvgfpfZUHIlW4-0I1DSzf9_IN5OLdfGMiK5P3kReyABEdXATDd69lEHgEP_NtQM-7fobohufLANY6A","hasMore":true}},"meta":{"requestId":"req_ac34e9c9-e3b3-4a0c-a86c-00c63b891f91","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/people/search":{"get":{"tags":["LinkedIn"],"summary":"Search LinkedIn people","description":"Search LinkedIn people by first and/or last name.","x-socialfetch-pricing":{"version":1,"baseCredits":0,"surcharges":[],"maxCredits":100,"normalizationFailureCredits":0,"metered":{"unit":"record","creditsPerUnit":2,"maxUnits":50,"chargedUnits":"returned_records"}},"x-socialfetch-credits-pricing":"2 credits per returned record. Up to 50 per request (100 credits max).","x-socialfetch-agent-hints":{"disambiguation":"This search usually takes around one and a half minutes to complete, so expect a longer wait than most endpoints."},"security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string","maxLength":128,"description":"First name filter. At least one of `firstName` or `lastName` is required."},"required":false,"description":"First name filter. At least one of `firstName` or `lastName` is required.","name":"firstName","in":"query"},{"schema":{"type":"string","maxLength":128,"description":"Last name filter. At least one of `firstName` or `lastName` is required."},"required":false,"description":"Last name filter. At least one of `firstName` or `lastName` is required.","name":"lastName","in":"query"}],"responses":{"200":{"description":"People search results. Check `data.lookupStatus` and `data.people`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether the people search completed for this request."},"people":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Person display name."},"profileUrl":{"type":"string","minLength":1,"description":"LinkedIn profile URL for this search result."},"subtitle":{"type":"string","nullable":true,"description":"Subtitle line shown on the search result when available."},"location":{"type":"string","nullable":true,"description":"Location label when available."},"experience":{"type":"string","nullable":true,"description":"Experience summary string from LinkedIn search."},"education":{"type":"string","nullable":true,"description":"Education summary string from LinkedIn search."},"imageUrl":{"type":"string","nullable":true,"description":"Avatar image URL when available."}},"required":["name","profileUrl","subtitle","location","experience","education","imageUrl"],"description":"One person from a LinkedIn people search."},"description":"People matching the search criteria."},"summary":{"type":"object","properties":{"returned":{"type":"integer","minimum":0,"description":"Number of people returned in this response."}},"required":["returned"],"description":"Summary counts for this search response."}},"required":["lookupStatus","people","summary"],"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":{"lookupStatus":"found","people":[{"name":"James Smith","profileUrl":"https://uk.linkedin.com/in/james-smith-2557238","subtitle":null,"location":"Nuneaton","experience":"Spacemaker Systems | Warehouse Automation, +11 more","education":", +1 more","imageUrl":null},{"name":"James Smith","profileUrl":"https://uk.linkedin.com/in/jsmithcloud","subtitle":null,"location":"Cardiff","experience":"Critical Cloud, +7 more","education":null,"imageUrl":null},{"name":"James Smith","profileUrl":"https://www.linkedin.com/in/james-smith456","subtitle":null,"location":"Los Angeles, CA","experience":"Hourglass Cosmetics, +2 more","education":null,"imageUrl":"https://media.licdn.com/dms/image/v2/C5603AQHQeCPdWUjEzA/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1653617555359?e=2147483647&v=beta&t=wiW_x5NpIbVMj6WDkAmW-goQqD7CXEWBPT3r1bekj5Y"}],"summary":{"returned":3}},"meta":{"requestId":"req_01example_people_search","creditsCharged":6,"version":"v1"}}}}},"400":{"description":"Invalid search 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/jobs/search":{"get":{"tags":["LinkedIn"],"summary":"Search LinkedIn jobs","description":"Search LinkedIn jobs by keyword and filters.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"This search usually takes around one and a half minutes."},"x-socialfetch-pricing":{"version":1,"baseCredits":0,"surcharges":[],"maxCredits":2000,"normalizationFailureCredits":0,"metered":{"unit":"record","creditsPerUnit":2,"queryParam":"limit","defaultUnits":10,"maxUnits":1000,"chargedUnits":"returned_records"}},"x-socialfetch-credits-pricing":"2 credits per returned record. Up to 1000 per request (2000 credits max). `limit` defaults to 10.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":512,"description":"Search keyword for LinkedIn job listings."},"required":true,"description":"Search keyword for LinkedIn job listings.","name":"keyword","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":256,"description":"Location label for the search."},"required":true,"description":"Location label for the search.","name":"location","in":"query"},{"schema":{"type":"string","maxLength":8,"description":"Optional two-letter country code."},"required":false,"description":"Optional two-letter country code.","name":"country","in":"query"},{"schema":{"type":"string","enum":["any","past-month","past-week","past-24-hours"],"description":"Optional time range filter for when jobs were posted."},"required":false,"description":"Optional time range filter for when jobs were posted.","name":"timeRange","in":"query"},{"schema":{"type":"string","enum":["full-time","part-time","contract","temporary","volunteer"],"description":"Optional job type filter."},"required":false,"description":"Optional job type filter.","name":"jobType","in":"query"},{"schema":{"type":"string","enum":["internship","entry-level","associate","mid-senior-level","director","executive"],"description":"Optional experience level filter."},"required":false,"description":"Optional experience level filter.","name":"experienceLevel","in":"query"},{"schema":{"type":"string","enum":["on-site","remote","hybrid"],"description":"Optional work arrangement filter."},"required":false,"description":"Optional work arrangement filter.","name":"remote","in":"query"},{"schema":{"type":"string","maxLength":256,"description":"Optional company name filter."},"required":false,"description":"Optional company name filter.","name":"company","in":"query"},{"schema":{"type":"string","enum":["exact-location","5-miles","10-miles","25-miles","50-miles"],"description":"Optional location radius filter."},"required":false,"description":"Optional location radius filter.","name":"locationRadius","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"default":10,"description":"Maximum job listings to return (default 10)."},"required":false,"description":"Maximum job listings to return (default 10).","name":"limit","in":"query"}],"responses":{"200":{"description":"Search results. Check `data.lookupStatus` and `data.jobs` for matching listings.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether the job search completed for this request."},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true,"description":"Unique identifier for the job listing when available."},"url":{"type":"string","minLength":1,"description":"Public URL for the job posting on LinkedIn."},"title":{"type":"string","nullable":true,"description":"Title of the advertised job position."},"companyName":{"type":"string","nullable":true,"description":"Name of the hiring company."},"companyId":{"type":"string","nullable":true,"description":"Unique identifier for the hiring company when available."},"companyUrl":{"type":"string","nullable":true,"description":"LinkedIn profile link of the hiring company."},"location":{"type":"string","nullable":true,"description":"Geographic location of the job."},"summary":{"type":"string","nullable":true,"description":"Brief overview of job responsibilities."},"seniorityLevel":{"type":"string","nullable":true,"description":"Seniority level of the position."},"function":{"type":"string","nullable":true,"description":"Department or function of the job."},"employmentType":{"type":"string","nullable":true,"description":"Type of employment offered."},"industries":{"type":"string","nullable":true,"description":"Industries associated with the job."},"basePayRange":{"type":"string","nullable":true,"description":"Salary range text for the position when available."},"postedAt":{"type":"string","nullable":true,"description":"When the job was posted (relative or absolute label from LinkedIn)."},"postedDate":{"type":"string","nullable":true,"description":"ISO-8601 posting timestamp when available."},"applicantCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of applicants for the job."},"jobPoster":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Job poster's display name on LinkedIn."},"title":{"type":"string","nullable":true,"description":"Job poster's current role or title."},"profileUrl":{"type":"string","nullable":true,"description":"Job poster's LinkedIn profile URL."}},"required":["name","title","profileUrl"],"description":"LinkedIn member who posted the job when available."},"applicationAvailable":{"type":"boolean","nullable":true,"description":"Whether a user can still apply for this job."},"descriptionFormatted":{"type":"string","nullable":true,"description":"Job description as formatted on LinkedIn."},"baseSalary":{"type":"object","nullable":true,"properties":{"minAmount":{"type":"number","nullable":true,"description":"Minimum base pay amount when available."},"maxAmount":{"type":"number","nullable":true,"description":"Maximum base pay amount when available."},"currency":{"type":"string","nullable":true,"description":"Payment currency symbol or code when available."},"paymentPeriod":{"type":"string","nullable":true,"description":"Pay interval for the base salary when available."}},"required":["minAmount","maxAmount","currency","paymentPeriod"],"description":"Structured base pay range when available."},"salaryStandards":{"type":"string","nullable":true,"description":"Employer-provided pay standards or notes."},"isEasyApply":{"type":"boolean","nullable":true,"description":"Whether LinkedIn Easy Apply is available."},"applyLink":{"type":"string","nullable":true,"description":"Direct apply link when provided by LinkedIn."},"countryCode":{"type":"string","nullable":true,"description":"Two-letter country code when available."},"companyLogoUrl":{"type":"string","nullable":true,"description":"Company logo image URL when available."}},"required":["id","url","title","companyName","companyId","companyUrl","location","summary","seniorityLevel","function","employmentType","industries","basePayRange","postedAt","postedDate","applicantCount","jobPoster","applicationAvailable","descriptionFormatted","baseSalary","salaryStandards","isEasyApply","applyLink","countryCode","companyLogoUrl"],"description":"One job listing from a LinkedIn job search."},"description":"Job listings matching the search criteria."},"summary":{"type":"object","properties":{"returned":{"type":"integer","minimum":0,"description":"Number of job listings returned in this response."}},"required":["returned"],"description":"Summary counts for this search response."}},"required":["lookupStatus","jobs","summary"],"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":{"lookupStatus":"found","jobs":[{"id":"4414999672","url":"https://www.linkedin.com/jobs/view/software-engineer-at-liveramp-4414999672?_l=en","title":"Software Engineer","companyName":"LiveRamp","companyId":"2241197","companyUrl":"https://www.linkedin.com/company/liveramp?trk=public_jobs_topcard-org-name","location":"San Francisco, CA","summary":"LiveRamp is the data collaboration platform of choice for the world’s most innovative companies. A groundbreaking leader in consumer privacy, data ethics, and foundational identity, LiveRamp is setting the new standard for building a connected customer view with unmatched clarity and context while protecting precious brand and consumer trust. LiveRamp offers complete flexibility to collaborate wherever data lives to support the widest range of data collaboration use cases—within organizations, between brands, and across its premier global network of top-quality partners. Hundreds of global innovators, from iconic consumer brands and tech giants to banks, retailers, and healthcare leaders turn to LiveRamp to build enduring brand and business value by deepening customer engagement and loyalty, activating new partnerships, and maximizing the value of their first-party data while staying on the forefront of rapidly evolving compliance and privacy requirements. You Will Design, develop and maintain scalable software solutions. Own product features from development through production deployment, ensuring scalability, reliability and code quality. Participate in and conduct meaningful code reviews to ensure adherence to engineering standards and best practices. Collaborate with cross-functional teams including product management to deliver robust technical solutions. Participate in Scrum/Agile meetings including sprint planning, daily stand-ups, retrospectives and backlog refinement. Provide operational support for our production systems Foster a positive environment of integrity, empowerment, initiative, and teamwork. Your Team Will The Ingestion team builds & maintains innovative solutions for ingesting data into Liveramp. We receive and process billions of records daily from various sources, validate, anonymize and normalize the data and deliver to downstream systems. About You Bachelor's degree with 3+ years of relevant experience, or Master's degree with 1+ year of relevant experience required. Experience with one or more object-oriented programming skills, i.e. Java, Go, C++ Ability to diagnose technical problems, debug code, and automate routine tasks Passion for building large scale systems and writing high-performance code. Enjoy working as part of a distributed team: smart, ethical, friendly, hard-working, and productive Preferred Skills Experience with GCP or another cloud provider (AWS, Azure, ...) The approximate annual base compensation range is $102,000 to $159,000. The actual offer, reflecting the total compensation package and benefits, will be determined by a number of factors including the applicant's experience, knowledge, skills, and abilities, geography, as well as internal equity among our team. Benefits People: Work with talented, collaborative, and friendly people who love what they do. Fun: We host in-person and virtual events such as game nights, happy hours, camping trips, and sports leagues. Work/Life Harmony: Flexible paid time off, paid holidays, options for working from home, and paid parental leave. Comprehensive Benefits Package: LiveRamp offers a comprehensive benefits package designed to help you be your best self in your personal and professional lives. Our benefits package offers medical, dental, vision, life and disability, an employee assistance program, voluntary benefits as well as perks programs for your healthy lifestyle, career growth and more. Savings: Our 401K matching plan—1:1 match up to 6% of salary—helps you plan ahead. Also Employee Stock Purchase Plan - 15% discount off purchase price of LiveRamp stock (U.S. LiveRampers) More About Us LiveRamp’s mission is to connect data in ways that matter, and doing so starts with our people. We know that inspired teams enlist people from a blend of backgrounds and experiences. And we know that individuals do their best when they not only bring their full selves to work but feel like they truly belong. Connecting LiveRampers to new ideas and one another is one of our guiding principles—one that informs how we hire, train, and grow our global team across nine countries and four continents. Click here to learn more about Diversity, Inclusion, & Belonging (DIB) at LiveRamp. LiveRamp is an affirmative action and equal opportunity employer (AA/EOE/W/M/Vet/Disabled) and does not discriminate in recruiting, hiring, training, promotion or other employment of associates or the awarding of subcontracts because of a person's race, color, sex, age, religion, national origin, protected veteran, disability, sexual orientation, gender identity, genetics or other protected status. Qualified applicants with arrest and conviction records will be considered for the position in accordance with the San Francisco Fair Chance Ordinance. We use automated decision systems (ADS) as part of our recruitment and hiring process. If you require an accommodation or believe that the use of an ADS may create a barrier to your application or participation in the hiring process due to a disability or other protected characteristic, please let us know. We are committed to providing reasonable accommodations and ensuring an equitable hiring experience for all candidates. California residents : Please see our California Personnel Privacy Policy for more information regarding how we collect, use, and disclose the personal information you provide during the job application process. To all recruitment agencies : LiveRamp does not accept agency resumes. Please do not forward resumes to our jobs alias, LiveRamp employees or any other company location. LiveRamp is not responsible for any fees related to unsolicited resumes. Show more Show less","seniorityLevel":"Mid-Senior level","function":"Engineering and Information Technology","employmentType":"Full-time","industries":"Advertising Services, Software Development, and Information Services","basePayRange":null,"postedAt":"2 weeks ago","postedDate":"2026-05-21T17:48:26.069Z","applicantCount":0,"jobPoster":null,"applicationAvailable":true,"descriptionFormatted":"<section class=\"show-more-less-html\" data-max-lines=\"5\">\n        <div class=\"show-more-less-html__markup show-more-less-html__markup--clamp-after-5\n            relative overflow-hidden\">\n          <strong>LiveRamp is the data collaboration platform of choice for the world&#x2019;s most innovative companies. A groundbreaking leader in consumer privacy, data ethics, and foundational identity, LiveRamp is setting the new standard for building a connected customer view with unmatched clarity and context while protecting precious brand and consumer trust. LiveRamp offers complete flexibility to collaborate wherever data lives to support the widest range of data collaboration use cases&#x2014;within organizations, between brands, and across its premier global network of top-quality partners. <br><br></strong><strong>Hundreds of global innovators, from iconic consumer brands and tech giants to banks, retailers, and healthcare leaders turn to LiveRamp to build enduring brand and business value by deepening customer engagement and loyalty, activating new partnerships, and maximizing the value of their first-party data while staying on the forefront of rapidly evolving compliance and privacy requirements.<br><br></strong><strong>You Will<br><br></strong><ul><li>Design, develop and maintain scalable software solutions.</li><li>Own product features from development through production deployment, ensuring<br><br></li></ul>scalability, reliability and code quality.<br><br><ul><li>Participate in and conduct meaningful code reviews to ensure adherence to engineering<br><br></li></ul>standards and best practices.<br><br><ul><li>Collaborate with cross-functional teams including product management to deliver robust technical solutions.</li><li>Participate in Scrum/Agile meetings including sprint planning, daily stand-ups,<br><br></li></ul>retrospectives and backlog refinement.<br><br><ul><li>Provide operational support for our production systems</li><li>Foster a positive environment of integrity, empowerment, initiative, and teamwork.<br><br></li></ul><strong>Your Team Will<br><br></strong>The Ingestion team builds &amp; maintains innovative solutions for ingesting data into Liveramp. We receive and process billions of records daily from various sources, validate, anonymize and normalize the data and deliver to downstream systems.<br><br><strong>About You<br><br></strong><ul><li>Bachelor&apos;s degree with 3+ years of relevant experience, or Master&apos;s degree with 1+ year of relevant experience required.</li><li>Experience with one or more object-oriented programming skills, i.e. Java, Go, C++</li><li>Ability to diagnose technical problems, debug code, and automate routine tasks</li><li>Passion for building large scale systems and writing high-performance code.</li><li>Enjoy working as part of a distributed team: smart, ethical, friendly, hard-working, and productive<br><br></li></ul><strong>Preferred Skills<br><br></strong><ul><li>Experience with GCP or another cloud provider (AWS, Azure, ...)<br><br></li></ul>The approximate annual base compensation range is $102,000 to $159,000. The actual offer, reflecting the total compensation package and benefits, will be determined by a number of factors including the applicant&apos;s experience, knowledge, skills, and abilities, geography, as well as internal equity among our team.<br><br><strong>Benefits<br><br></strong><ul><li>People: Work with talented, collaborative, and friendly people who love what they do.</li><li>Fun: We host in-person and virtual events such as game nights, happy hours, camping trips, and sports leagues. </li><li>Work/Life Harmony: Flexible paid time off, paid holidays, options for working from home, and paid parental leave.</li><li>Comprehensive Benefits Package: LiveRamp offers a comprehensive benefits package designed to help you be your best self in your personal and professional lives. Our benefits package offers medical, dental, vision, life and disability, an employee assistance program, voluntary benefits as well as perks programs for your healthy lifestyle, career growth and more.</li><li>Savings: Our 401K matching plan&#x2014;1:1 match up to 6% of salary&#x2014;helps you plan ahead. Also Employee Stock Purchase Plan - 15% discount off purchase price of LiveRamp stock (U.S. LiveRampers)<br><br></li></ul><strong>More About Us<br><br></strong><em>LiveRamp&#x2019;s mission is to connect data in ways that matter, and doing so starts with our people. We know that inspired teams enlist people from a blend of backgrounds and experiences. And we know that individuals do their best when they not only bring their full selves to work but feel like they truly belong. Connecting LiveRampers to new ideas and one another is one of our guiding principles&#x2014;one that informs how we hire, train, and grow our global team across nine countries and four continents. Click </em><em>here </em><em>to learn more about Diversity, Inclusion, &amp; Belonging (DIB) at LiveRamp. <br><br></em>LiveRamp is an affirmative action and equal opportunity employer (AA/EOE/W/M/Vet/Disabled) and does not discriminate in recruiting, hiring, training, promotion or other employment of associates or the awarding of subcontracts because of a person&apos;s race, color, sex, age, religion, national origin, protected veteran, disability, sexual orientation, gender identity, genetics or other protected status. Qualified applicants with arrest and conviction records will be considered for the position in accordance with the San Francisco Fair Chance Ordinance.<br><br>We use automated decision systems (ADS) as part of our recruitment and hiring process. If you require an accommodation or believe that the use of an ADS may create a barrier to your application or participation in the hiring process due to a disability or other protected characteristic, please let us know. We are committed to providing reasonable accommodations and ensuring an equitable hiring experience for all candidates.<br><br><strong>California residents</strong>: Please see our California Personnel Privacy Policy for more information regarding how we collect, use, and disclose the personal information you provide during the job application process.<br><br><strong>To all recruitment agencies</strong>: LiveRamp does not accept agency resumes. Please do not forward resumes to our jobs alias, LiveRamp employees or any other company location. LiveRamp is not responsible for any fees related to unsolicited resumes.\n        </div>\n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--more\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-more-html-btn\" aria-label=\"Show more\" aria-expanded=\"false\">\n<!---->\n        \n            Show more\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/cyolgscd0imw2ldqppkrb84vo\"></icon>\n    </button>\n  \n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--less\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-less-html-btn\" aria-label=\"Show less\" aria-expanded=\"true\">\n<!---->\n        \n            Show less\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/4chtt12k98xwnba1nimld2oyg\"></icon>\n    </button>\n  \n<!---->    </section>","baseSalary":null,"salaryStandards":null,"isEasyApply":false,"applyLink":null,"countryCode":"US","companyLogoUrl":"https://media.licdn.com/dms/image/v2/D560BAQGLYeN3eswyeg/company-logo_100_100/company-logo_100_100/0/1731707766169/liveramp_logo?e=2147483647&v=beta&t=KxXa0kWD4MKJ-0YW__o88h3XOuG-EbRFfUwrWWFTl2A"},{"id":"4402315059","url":"https://www.linkedin.com/jobs/view/fullstack-engineer-developer-at-metantz-4402315059?_l=en","title":"Fullstack Engineer/ Developer","companyName":"MetAntz","companyId":"105919229","companyUrl":"https://www.linkedin.com/company/metantz?trk=public_jobs_topcard-org-name","location":"San Francisco, CA","summary":"5+ years building and scaling production software that real people actually use Comfortable being the only engineer in the room - and thriving in it You have owned products from zero to thousands of users, not just written tickets Obsessed with shipping speed is a feature, and you treat it that way You think in systems - you can spot the bottleneck before it becomes a crisis Revenue-aware you understand that good engineering serves the business Fluent across the full stack and unafraid of picking up new tools quickly The Stack We move fast, so we stay close to what works. You should be deeply comfortable with TypeScript React Node.js Python SwiftUI Show more Show less","seniorityLevel":"Not Applicable","function":"Engineering and Information Technology","employmentType":"Full-time","industries":"Technology, Information and Internet","basePayRange":null,"postedAt":"1 month ago","postedDate":"2026-05-05T17:48:33.057Z","applicantCount":75,"jobPoster":null,"applicationAvailable":true,"descriptionFormatted":"<section class=\"show-more-less-html\" data-max-lines=\"5\">\n        <div class=\"show-more-less-html__markup show-more-less-html__markup--clamp-after-5\n            relative overflow-hidden\">\n          <ul><li>5+ years building and scaling production software that real people actually use</li><li>Comfortable being the only engineer in the room - and thriving in it</li><li>You have owned products from zero to thousands of users, not just written tickets</li><li>Obsessed with shipping speed is a feature, and you treat it that way</li><li>You think in systems - you can spot the bottleneck before it becomes a crisis</li><li>Revenue-aware you understand that good engineering serves the business</li><li>Fluent across the full stack and unafraid of picking up new tools quickly<br><br></li></ul><strong>The Stack<br><br></strong>We move fast, so we stay close to what works. You should be deeply comfortable with<br><br><ul><li>TypeScript</li><li>React</li><li>Node.js</li><li>Python</li><li>SwiftUI</li></ul>\n        </div>\n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--more\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-more-html-btn\" aria-label=\"Show more\" aria-expanded=\"false\">\n<!---->\n        \n            Show more\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/cyolgscd0imw2ldqppkrb84vo\"></icon>\n    </button>\n  \n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--less\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-less-html-btn\" aria-label=\"Show less\" aria-expanded=\"true\">\n<!---->\n        \n            Show less\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/4chtt12k98xwnba1nimld2oyg\"></icon>\n    </button>\n  \n<!---->    </section>","baseSalary":null,"salaryStandards":null,"isEasyApply":false,"applyLink":null,"countryCode":"US","companyLogoUrl":"https://media.licdn.com/dms/image/v2/D4D0BAQHg1eg6HD_2gg/company-logo_100_100/B4DZVLPnSPHAAQ-/0/1740724140174/metantz_logo?e=2147483647&v=beta&t=YC2uPyCHWwhg1VDoL5mTh0P8YFI4keh_ftLBggbEQrs"},{"id":"4344577270","url":"https://www.linkedin.com/jobs/view/software-engineer-at-retool-4344577270?_l=en","title":"Software Engineer","companyName":"Retool","companyId":"11869260","companyUrl":"https://www.linkedin.com/company/tryretool?trk=public_jobs_topcard-org-name","location":"San Francisco, CA","summary":"About Retool Nearly every company in the world runs on custom software for critical operations like tracking performance metrics, handling customer support workflows, building admin dashboards, and countless other processes you might not have even thought of. But most companies don't have adequate resources to properly invest in these tools, leading to a lot of old and clunky internal software or, even worse, users still stuck in manual and spreadsheet flows. At Retool, we’re building the first enterprise AppGen platform: software that transforms natural language into production-ready code, integrates directly with business data, and meets the highest standards of security and governance. AI is redefining what it means to build software—and who gets to build it. The definition of “developer” now includes analysts, operators, and domain experts creating solutions directly. As the pool of builders widens, so does the complexity of what they need to build. The opportunity is enormous, but so is the challenge of enabling this larger community to build production-grade software safely. That means AI that understands real business data, enforces enterprise policies automatically, and empowers teams to create once and reuse everywhere with shared, trusted components. Over 100 million hours of work has been automated by developers and domain experts using our platform, freeing them to focus on creative problem-solving and strategic initiatives that drive real business value. The people closest to knowing what needs to be built can now safely create custom solutions within enterprise guardrails. And that's a mission worth striving for. Let's build the future together! WHY WE'RE LOOKING FOR YOU Retool started as a way to address obstacles with internal tools and has grown into a company that solves internal tooling for thousands of companies (big and small). We’ve done a lot with a little–we have a growing engineering team and a laundry list of features and foundational improvements we want to tackle. To continue our fast-paced growth, we need to build a world-class engineering team. You’ll help us get there by owning end-to-end projects, talking with customers, and ultimately supporting the growth of Retool the product and the business. What You'll Do We’re a tool built by engineers for engineers. You will work on features that impact thousands of customers globally and have the ability to change how applications are built across all parts of the stack. You’ll meet with internal counterparts to enhance customer thinking and partner closely with product on building out features. You’ll have a large impact on new features or improve performance on thousands of customers' applications. Retool is built primarily in JavaScript and TypeScript, Node.js on the backend, and React on the frontend. We’ll look to you to bring your experience to build within this environment and impact our codebase. You’ll also engage in technical decision-making with the team, participate in planning, and help our engineering team expand its skillset. To that end, you’ll also play a key role in helping us grow the team through interviewing potential new team members. Who You'll Work With As an engineer, you will work closely with product and design teams to build, ship, and iterate new features. We’re a hard-working, passionate bunch who are motivated by collaboration, strong results, and bringing the impact of Retool to our customers. When we’re in the office, we enjoy eating lunch (and occasionally dinner!) together, and we’ve been known for our lively game nights. But at the root of it all, we come together to show our customers and not-quite-yet customers how Retool can make them and their companies more efficient and successful. If this sounds like a fit, we’d love to hear from you! IN THIS ROLE YOU'LL Improve the UX of the Retool core editor, which involves plenty of interesting problems, both technical (e.g. \"how do we implement our drag and drop system in a performant way?\") and otherwise (e.g. \"how do we handle the pushing of existing components when dragging new components on?\") Expand the types of applications that you can build into different parts of the development process Debug customer problems + build features for them (e.g. \"the Google Sheets integration doesn't support adding rows\", and \"what's the best way to support that? Via cell ranges, or via a lightweight, home-grown ORM?\") Help assess and recruit future engineers Work on increasing the scalability of Retool’s platform (e.g. frontend application performance, reducing query latencies) The Skillset You'll Bring 3+ years experience in professional software development, ideally some of which you’ve spent in startups Experience owning technically challenging and demanding cross-functional projects Experience across the entire stack, from backend to frontend (and if you have a preference, we’d love to hear it!) Experience with cloud based infrastructure like Azure, AWS or GCP Ability to make technical decisions quickly, while looping in key stakeholders, too A customer-first mindset and an interest in talking with customers to make sure what we’re building meets their needs Habit of introspection and understanding what’s helped you be successful in the past NICE TO HAVE Experience in JavaScript / TypeScript Experience with PostgreSQL Bonus points if you have experience in mentoring other team members, and have previously worked closely with designers For candidates based in the United States, the pay range(s) for this role is listed below and represents base salary range for non-commissionable roles or on-target earnings (OTE) for commissionable roles. This salary range may be inclusive of several career levels at Retool and will be narrowed during the interview process based on a number of factors such as (but not limited to), scope and responsibilities, the candidate’s experience and qualifications, and location. Additional compensation in the form(s) of equity and/or commission are dependent on the position offered. Retool provides a comprehensive benefit plan, including medical, dental, vision, and 401(k). Pay and benefits are subject to change at any time, consistent with the terms of any applicable compensation or benefit plans. The base pay range for this role is $163,800 – $306,000 per year. Retool offers generous benefits to all employees and hybrid work location. For more information, please visit the benefits and perks section of our careers page! Retool is currently set up to employ all roles in the US and specific roles in the UK. To find roles that can be employed in the UK, please refer to our careers page and review the indicated locations. Show more Show less","seniorityLevel":"Mid-Senior level","function":"Engineering and Information Technology","employmentType":"Full-time","industries":"Software Development","basePayRange":"$163,800.00/yr - $306,000.00/yr","postedAt":"5 months ago","postedDate":"2026-01-05T17:48:33.065Z","applicantCount":141,"jobPoster":null,"applicationAvailable":true,"descriptionFormatted":"<section class=\"show-more-less-html\" data-max-lines=\"5\">\n        <div class=\"show-more-less-html__markup show-more-less-html__markup--clamp-after-5\n            relative overflow-hidden\">\n          <strong>About Retool<br><br></strong>Nearly every company in the world runs on custom software for critical operations like tracking performance metrics, handling customer support workflows, building admin dashboards, and countless other processes you might not have even thought of. But most companies don&apos;t have adequate resources to properly invest in these tools, leading to a lot of old and clunky internal software or, even worse, users still stuck in manual and spreadsheet flows.<br><br>At Retool, we&#x2019;re building the first enterprise AppGen platform: software that transforms natural language into production-ready code, integrates directly with business data, and meets the highest standards of security and governance. AI is redefining what it means to build software&#x2014;and who gets to build it. The definition of &#x201C;developer&#x201D; now includes analysts, operators, and domain experts creating solutions directly. As the pool of builders widens, so does the complexity of what they need to build. The opportunity is enormous, but so is the challenge of enabling this larger community to build production-grade software safely. That means AI that understands real business data, enforces enterprise policies automatically, and empowers teams to create once and reuse everywhere with shared, trusted components.<br><br>Over 100 million hours of work has been automated by developers and domain experts using our platform, freeing them to focus on creative problem-solving and strategic initiatives that drive real business value. The people closest to knowing what needs to be built can now safely create custom solutions within enterprise guardrails. And that&apos;s a mission worth striving for.<br><br>Let&apos;s build the future together!<br><br><strong>WHY WE&apos;RE LOOKING FOR YOU<br><br></strong>Retool started as a way to address obstacles with internal tools and has grown into a company that solves internal tooling for thousands of companies (big and small). We&#x2019;ve done a lot with a little&#x2013;we have a growing engineering team and a laundry list of features and foundational improvements we want to tackle.<br><br>To continue our fast-paced growth, we need to build a world-class engineering team. You&#x2019;ll help us get there by owning end-to-end projects, talking with customers, and ultimately supporting the growth of Retool the product and the business.<br><br><strong>What You&apos;ll Do<br><br></strong>We&#x2019;re a tool built by engineers for engineers. You will work on features that impact thousands of customers globally and have the ability to change how applications are built across all parts of the stack. You&#x2019;ll meet with internal counterparts to enhance customer thinking and partner closely with product on building out features. You&#x2019;ll have a large impact on new features or improve performance on thousands of customers&apos; applications.<br><br>Retool is built primarily in JavaScript and TypeScript, Node.js on the backend, and React on the frontend. We&#x2019;ll look to you to bring your experience to build within this environment and impact our codebase. You&#x2019;ll also engage in technical decision-making with the team, participate in planning, and help our engineering team expand its skillset. To that end, you&#x2019;ll also play a key role in helping us grow the team through interviewing potential new team members.<br><br><strong>Who You&apos;ll Work With<br><br></strong>As an engineer, you will work closely with product and design teams to build, ship, and iterate new features. We&#x2019;re a hard-working, passionate bunch who are motivated by collaboration, strong results, and bringing the impact of Retool to our customers. When we&#x2019;re in the office, we enjoy eating lunch (and occasionally dinner!) together, and we&#x2019;ve been known for our lively game nights. But at the root of it all, we come together to show our customers and not-quite-yet customers how Retool can make them and their companies more efficient and successful. If this sounds like a fit, we&#x2019;d love to hear from you!<br><br><strong>IN THIS ROLE YOU&apos;LL<br><br></strong><ul><li>Improve the UX of the Retool core editor, which involves plenty of interesting problems, both technical (e.g. &quot;how do we implement our drag and drop system in a performant way?&quot;) and otherwise (e.g. &quot;how do we handle the pushing of existing components when dragging new components on?&quot;)</li><li>Expand the types of applications that you can build into different parts of the development process </li><li>Debug customer problems + build features for them (e.g. &quot;the Google Sheets integration doesn&apos;t support adding rows&quot;, and &quot;what&apos;s the best way to support that? Via cell ranges, or via a lightweight, home-grown ORM?&quot;)</li><li>Help assess and recruit future engineers</li><li>Work on increasing the scalability of Retool&#x2019;s platform (e.g. frontend application performance, reducing query latencies) <br><br></li></ul><strong>The Skillset You&apos;ll Bring<br><br></strong><ul><li>3+ years experience in professional software development, ideally some of which you&#x2019;ve spent in startups</li><li>Experience owning technically challenging and demanding cross-functional projects</li><li>Experience across the entire stack, from backend to frontend (and if you have a preference, we&#x2019;d love to hear it!)</li><li>Experience with cloud based infrastructure like Azure, AWS or GCP</li><li>Ability to make technical decisions quickly, while looping in key stakeholders, too</li><li>A customer-first mindset and an interest in talking with customers to make sure what we&#x2019;re building meets their needs</li><li>Habit of introspection and understanding what&#x2019;s helped you be successful in the past<br><br></li></ul><strong>NICE TO HAVE<br><br></strong><ul><li>Experience in JavaScript / TypeScript </li><li>Experience with PostgreSQL </li><li>Bonus points if you have experience in mentoring other team members, and have previously worked closely with designers<br><br></li></ul>For candidates based in the United States, the pay range(s) for this role is listed below and represents base salary range for non-commissionable roles or on-target earnings (OTE) for commissionable roles. This salary range may be inclusive of several career levels at Retool and will be narrowed during the interview process based on a number of factors such as (but not limited to), scope and responsibilities, the candidate&#x2019;s experience and qualifications, and location.<br><br>Additional compensation in the form(s) of equity and/or commission are dependent on the position offered. Retool provides a comprehensive benefit plan, including medical, dental, vision, and 401(k). Pay and benefits are subject to change at any time, consistent with the terms of any applicable compensation or benefit plans.<br><br>The base pay range for this role is $163,800 &#x2013; $306,000 per year.<br><br>Retool offers generous benefits to all employees and hybrid work location. For more information, please visit the benefits and perks section of our careers page!<br><br>Retool is currently set up to employ all roles in the US and specific roles in the UK. To find roles that can be employed in the UK, please refer to our careers page and review the indicated locations.\n        </div>\n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--more\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-more-html-btn\" aria-label=\"Show more\" aria-expanded=\"false\">\n<!---->\n        \n            Show more\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/cyolgscd0imw2ldqppkrb84vo\"></icon>\n    </button>\n  \n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--less\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-less-html-btn\" aria-label=\"Show less\" aria-expanded=\"true\">\n<!---->\n        \n            Show less\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/4chtt12k98xwnba1nimld2oyg\"></icon>\n    </button>\n  \n<!---->    </section>","baseSalary":{"minAmount":163800,"maxAmount":306000,"currency":"$","paymentPeriod":"yr"},"salaryStandards":"This range is provided by Retool. Your actual pay will be based on your skills and experience — talk with your recruiter to learn more.","isEasyApply":false,"applyLink":null,"countryCode":"US","companyLogoUrl":"https://media.licdn.com/dms/image/v2/D4E0BAQFBxfqBtVmJNA/company-logo_100_100/company-logo_100_100/0/1726148159200/tryretool_logo?e=2147483647&v=beta&t=HQycBGQh00IxkfWNZKHy4GhmjlB56vmUQHcrOLWBFX0"}],"summary":{"returned":3}},"meta":{"requestId":"req_01example_job_search","creditsCharged":6,"version":"v1"}}}}},"400":{"description":"Invalid search 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/jobs":{"get":{"tags":["LinkedIn"],"summary":"Get LinkedIn jobs","description":"Get LinkedIn job postings by URL.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":100,"batch":{"maxUnits":50,"unit":"url"}},"x-socialfetch-credits-pricing":"2 credits per job URL requested. Up to 50 jobs per request (100 credits max).","parameters":[{"schema":{"type":"array","items":{"type":"string","minLength":1,"maxLength":4096,"description":"Full LinkedIn job posting URL. Must include `/jobs/view/`."},"minItems":1,"maxItems":50,"description":"LinkedIn job posting URL to look up."},"required":true,"description":"LinkedIn job posting URL to look up.","name":"url","in":"query"}],"responses":{"200":{"description":"Batch lookup results. Inspect each `data.results[].lookupStatus` for `found`, `not_found`, or `error`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Requested job URL echoed for this result."},"lookupStatus":{"type":"string","enum":["found","not_found","error"],"description":"Domain outcome of one job lookup in the batch."},"error":{"type":"object","nullable":true,"properties":{"message":{"type":"string","minLength":1,"description":"Short customer-safe reason this job could not be returned."}},"required":["message"],"description":"Error details when `lookupStatus` is `error`."},"job":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Unique identifier for the job listing when available."},"url":{"type":"string","minLength":1,"description":"Public URL for the job posting on LinkedIn."},"title":{"type":"string","nullable":true,"description":"Title of the advertised job position."},"companyName":{"type":"string","nullable":true,"description":"Name of the hiring company."},"companyId":{"type":"string","nullable":true,"description":"Unique identifier for the hiring company when available."},"companyUrl":{"type":"string","nullable":true,"description":"LinkedIn profile link of the hiring company."},"location":{"type":"string","nullable":true,"description":"Geographic location of the job."},"summary":{"type":"string","nullable":true,"description":"Brief overview of job responsibilities."},"seniorityLevel":{"type":"string","nullable":true,"description":"Seniority level of the position."},"function":{"type":"string","nullable":true,"description":"Department or function of the job."},"employmentType":{"type":"string","nullable":true,"description":"Type of employment offered."},"industries":{"type":"string","nullable":true,"description":"Industries associated with the job."},"basePayRange":{"type":"string","nullable":true,"description":"Salary range text for the position when available."},"postedAt":{"type":"string","nullable":true,"description":"When the job was posted (relative or absolute label from LinkedIn)."},"postedDate":{"type":"string","nullable":true,"description":"ISO-8601 posting timestamp when available."},"applicantCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of applicants for the job."},"jobPoster":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Job poster's display name on LinkedIn."},"title":{"type":"string","nullable":true,"description":"Job poster's current role or title."},"profileUrl":{"type":"string","nullable":true,"description":"Job poster's LinkedIn profile URL."}},"required":["name","title","profileUrl"],"description":"LinkedIn member who posted the job when available."},"applicationAvailable":{"type":"boolean","nullable":true,"description":"Whether a user can still apply for this job."},"descriptionFormatted":{"type":"string","nullable":true,"description":"Job description as formatted on LinkedIn."},"baseSalary":{"type":"object","nullable":true,"properties":{"minAmount":{"type":"number","nullable":true,"description":"Minimum base pay amount when available."},"maxAmount":{"type":"number","nullable":true,"description":"Maximum base pay amount when available."},"currency":{"type":"string","nullable":true,"description":"Payment currency symbol or code when available."},"paymentPeriod":{"type":"string","nullable":true,"description":"Pay interval for the base salary when available."}},"required":["minAmount","maxAmount","currency","paymentPeriod"],"description":"Structured base pay range when available."},"salaryStandards":{"type":"string","nullable":true,"description":"Employer-provided pay standards or notes."},"isEasyApply":{"type":"boolean","nullable":true,"description":"Whether LinkedIn Easy Apply is available."},"applyLink":{"type":"string","nullable":true,"description":"Direct apply link when provided by LinkedIn."},"countryCode":{"type":"string","nullable":true,"description":"Two-letter country code when available."},"companyLogoUrl":{"type":"string","nullable":true,"description":"Company logo image URL when available."}},"required":["id","url","title","companyName","companyId","companyUrl","location","summary","seniorityLevel","function","employmentType","industries","basePayRange","postedAt","postedDate","applicantCount","jobPoster","applicationAvailable","descriptionFormatted","baseSalary","salaryStandards","isEasyApply","applyLink","countryCode","companyLogoUrl"],"description":"Job details when available."}},"required":["url","lookupStatus","error","job"],"description":"LinkedIn job lookup result for one requested URL."},"description":"Per-URL job lookup results."},"summary":{"type":"object","properties":{"requestedUrls":{"type":"integer","minimum":0,"description":"Number of job URLs requested in this batch."},"found":{"type":"integer","minimum":0,"description":"Number of jobs successfully found."},"notFound":{"type":"integer","minimum":0,"description":"Number of jobs that were not found."},"errored":{"type":"integer","minimum":0,"description":"Number of jobs that failed to resolve."}},"required":["requestedUrls","found","notFound","errored"],"description":"Summary counts for the job batch."}},"required":["results","summary"],"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":{"results":[{"url":"https://www.linkedin.com/jobs/view/software-engineer-at-epic-3986111804/","lookupStatus":"found","error":null,"job":{"id":"3986111804","url":"https://www.linkedin.com/jobs/view/software-engineer-at-epic-3986111804/?_l=en","title":"Software Engineer","companyName":"Epic","companyId":"163658","companyUrl":"https://www.linkedin.com/company/epic1979?trk=public_jobs_topcard-org-name","location":"San Jose, CA","summary":"Please note that this position is based on our campus in Madison, WI, and requires relocation to the area. We recruit nationally and provide financial relocation assistance. Code that saves lives. As a software developer at Epic, you’ll write software that impacts the lives of 325 million patients around the world. Working in your own office, surrounded by thousands of high-caliber developers, you’ll use modern development methodologies and employ user-centered design, analytics, and machine learning tools to drive innovation in healthcare. Using leading-edge technologies and languages like JS, TS, and C#, you’ll invent better ways to reduce medical errors, streamline record sharing between hospitals, and provide the quality of care a patient deserves. Learn more about our team at https://careers.epic.com/jobs/softwaredevelopment/. Write software for the most innovative health systems on the planet. The top-ranked health systems in U.S. News and World Report are Epic customers. Our community includes major systems like the Mayo Clinic, Johns Hopkins, Cleveland Clinic, and Kaiser Permanente, as well as leading academic medical centers at the University of Wisconsin, University of Michigan, University of California, University of Texas, The Ohio State University, and many more. Live affordably in a city known for its rising tech talent. Epic is located just outside Madison, Wisconsin, the second fastest growing market for tech talent in the United States and home to the state capital and the University of Wisconsin. Madison, a city surrounded by water, has received accolades for being the greenest city in America (NerdWallet), the best city for renters (SmartAsset), the fittest city in America (Fitbit), and the third best metro in the US for young professionals (Forbes Advisor). More than just important work . Our uniquely themed campus was designed to heighten your ability to get stuff done in your office, a conference room, or by the fireplace in a comfy chair. All meals are restaurant-quality but cost only a few dollars, and they’re prepared by a team comprised of kitchen talent from restaurants around the country. And, after five years here, you’ll earn a four-week sabbatical anywhere in the world. Staff have kayaked in Patagonia, attended a Beyoncé concert in Ireland, built a library in Tanzania, and run a marathon in Antarctica. We offer comprehensive benefits to keep you healthy and happy as you grow in your life and career, and your merit-based compensation will reflect the impact your work has on the company and our customers. You'll also be eligible for annual raises and bonuses, as well as stock grants, which give you an even greater stake in the success of Epic and our customers. Healthcare is global, and building the best ideas from around the world into Epic software is a point of pride. As an Equal Opportunity Employer, we know that inclusive teams design software that supports the delivery of quality care for all patients, so diversity, equity, and inclusion are written into our principles. Please see our full non-discrimination statement at https://careers.epic.com/EEO. Relocation to the Madison, WI area (Reimbursed) BS/BA or greater in Computer Science, Mathematics, Software Engineering, Computer Engineering, or a related field A history of academic excellence or professional success Eligible to work in the United States without visa sponsorship (persons with appropriate qualifications and eligible for TN status under NAFTA may apply) COVID-19 vaccination Show more Show less","seniorityLevel":"Entry level","function":"Engineering and Information Technology","employmentType":"Full-time","industries":"Software Development","basePayRange":null,"postedAt":"6 days ago","postedDate":"2026-05-29T17:46:32.706Z","applicantCount":0,"jobPoster":null,"applicationAvailable":true,"descriptionFormatted":"<section class=\"show-more-less-html\" data-max-lines=\"5\">\n        <div class=\"show-more-less-html__markup show-more-less-html__markup--clamp-after-5\n            relative overflow-hidden\">\n          Please note that this position is based on our campus in Madison, WI, and requires relocation to the area. We recruit nationally and provide financial relocation assistance.<br><br><strong>Code that saves lives. <br><br></strong>As a software developer at Epic, you&#x2019;ll write software that impacts the lives of 325 million patients around the world. Working in your own office, surrounded by thousands of high-caliber developers, you&#x2019;ll use modern development methodologies and employ user-centered design, analytics, and machine learning tools to drive innovation in healthcare. Using leading-edge technologies and languages like JS, TS, and C#, you&#x2019;ll invent better ways to reduce medical errors, streamline record sharing between hospitals, and provide the quality of care a patient deserves. Learn more about our team at https://careers.epic.com/jobs/softwaredevelopment/.<br><br><strong>Write software for the most innovative health systems on the planet.<br><br></strong>The top-ranked health systems in U.S. News and World Report are Epic customers. Our community includes major systems like the Mayo Clinic, Johns Hopkins, Cleveland Clinic, and Kaiser Permanente, as well as leading academic medical centers at the University of Wisconsin, University of Michigan, University of California, University of Texas, The Ohio State University, and many more.<br><br><strong>Live affordably in a city known for its rising tech talent.<br><br></strong>Epic is located just outside Madison, Wisconsin, the second fastest growing market for tech talent in the United States and home to the state capital and the University of Wisconsin. Madison, a city surrounded by water, has received accolades for being the greenest city in America (NerdWallet), the best city for renters (SmartAsset), the fittest city in America (Fitbit), and the third best metro in the US for young professionals (Forbes Advisor).<br><br><strong>More than just important work</strong>.<br><br>Our uniquely themed campus was designed to heighten your ability to get stuff done in your office, a conference room, or by the fireplace in a comfy chair. All meals are restaurant-quality but cost only a few dollars, and they&#x2019;re prepared by a team comprised of kitchen talent from restaurants around the country. And, after five years here, you&#x2019;ll earn a four-week sabbatical anywhere in the world. Staff have kayaked in Patagonia, attended a Beyonc&#xE9; concert in Ireland, built a library in Tanzania, and run a marathon in Antarctica.<br><br>We offer comprehensive benefits to keep you healthy and happy as you grow in your life and career, and your merit-based compensation will reflect the impact your work has on the company and our customers. You&apos;ll also be eligible for annual raises and bonuses, as well as stock grants, which give you an even greater stake in the success of Epic and our customers. Healthcare is global, and building the best ideas from around the world into Epic software is a point of pride. As an Equal Opportunity Employer, we know that inclusive teams design software that supports the delivery of quality care for all patients, so diversity, equity, and inclusion are written into our principles. Please see our full non-discrimination statement at https://careers.epic.com/EEO.<br><br><ul><li>Relocation to the Madison, WI area (Reimbursed)</li><li>BS/BA or greater in Computer Science, Mathematics, Software Engineering, Computer Engineering, or a related field</li><li>A history of academic excellence or professional success</li><li>Eligible to work in the United States without visa sponsorship (persons with appropriate qualifications and eligible for TN status under NAFTA may apply)</li><li>COVID-19 vaccination</li></ul>\n        </div>\n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--more\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-more-html-btn\" aria-label=\"Show more\" aria-expanded=\"false\">\n<!---->\n        \n            Show more\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/cyolgscd0imw2ldqppkrb84vo\"></icon>\n    </button>\n  \n\n        \n\n    \n    \n    \n\n    <button class=\"show-more-less-html__button show-more-less-button\n        show-more-less-html__button--less\n        ml-0.5\" data-tracking-control-name=\"public_jobs_show-less-html-btn\" aria-label=\"Show less\" aria-expanded=\"true\">\n<!---->\n        \n            Show less\n          \n\n          <icon class=\"show-more-less-html__button-icon show-more-less-button-icon\" data-delayed-url=\"https://static.licdn.com/aero-v1/sc/h/4chtt12k98xwnba1nimld2oyg\"></icon>\n    </button>\n  \n<!---->    </section>","baseSalary":null,"salaryStandards":null,"isEasyApply":false,"applyLink":null,"countryCode":null,"companyLogoUrl":"https://media.licdn.com/dms/image/v2/C4D0BAQH6HS4jtIcQ4w/company-logo_100_100/company-logo_100_100/0/1631348441877?e=2147483647&v=beta&t=oOcOoqQ5XjMudBpnuLAezQFt6sQvKtSzyNDaM9PGCys"}}],"summary":{"requestedUrls":1,"found":1,"notFound":0,"errored":0}},"meta":{"requestId":"req_01example_job","creditsCharged":2,"version":"v1"}}}}},"400":{"description":"Invalid job URL 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/profiles/posts":{"get":{"tags":["LinkedIn"],"summary":"List LinkedIn profile posts","description":"Get posts from a LinkedIn profile.","x-socialfetch-pricing":{"version":1,"baseCredits":0,"surcharges":[],"maxCredits":400,"normalizationFailureCredits":0,"metered":{"unit":"record","creditsPerUnit":2,"queryParam":"limit","defaultUnits":10,"maxUnits":200,"chargedUnits":"returned_records"}},"x-socialfetch-credits-pricing":"2 credits per returned record. Up to 200 per request (400 credits max). `limit` defaults to 10.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"LinkedIn profile URL or vanity handle whose public posts should be listed."},"required":true,"description":"LinkedIn profile URL or vanity handle whose public posts should be listed.","name":"url","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Optional start of the date range for posts to include."},"required":false,"description":"Optional start of the date range for posts to include.","name":"startDate","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Optional end of the date range for posts to include."},"required":false,"description":"Optional end of the date range for posts to include.","name":"endDate","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"When true, return only posts created by the profile owner."},"required":false,"description":"When true, return only posts created by the profile owner.","name":"onlyAuthoredPosts","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"default":10,"description":"Maximum posts to return (default 10)."},"required":false,"description":"Maximum posts to return (default 10).","name":"limit","in":"query"}],"responses":{"200":{"description":"Profile posts listing. Check `data.lookupStatus` and `data.posts`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether the profile resolved for this request."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true,"description":"Unique identifier for the LinkedIn post."},"url":{"type":"string","minLength":1,"description":"Web link to the individual LinkedIn post."},"authorUserId":{"type":"string","nullable":true,"description":"Unique identifier for the user who created the post."},"title":{"type":"string","nullable":true,"description":"Title or main subject of the post when applicable."},"headline":{"type":"string","nullable":true,"description":"Brief headline summarizing the post content."},"text":{"type":"string","nullable":true,"description":"Main text content of the post."},"publishedAt":{"type":"string","nullable":true,"description":"Date and time when the post was published."},"hashtags":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"embeddedLinks":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"images":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"videos":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"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."},"reposts":{"type":"integer","nullable":true,"minimum":0,"description":"Repost count when available."}},"required":["likes","comments","reposts"],"description":"Engagement metrics when available."},"moreArticlesByUser":{"type":"array","nullable":true,"items":{"type":"object","properties":{"headline":{"type":"string","nullable":true,"description":"Headline of the related article."},"datePosted":{"type":"string","nullable":true,"description":"Publish date of the related article."},"postUrl":{"type":"string","nullable":true,"description":"URL of the related article."}},"required":["headline","datePosted","postUrl"],"description":"Another post or article by the same author."},"description":"Other posts or articles by the same user."},"moreRelevantPosts":{"type":"array","nullable":true,"items":{"type":"object","properties":{"postUrl":{"type":"string","nullable":true,"description":"URL of the related post."},"postId":{"type":"string","nullable":true,"description":"LinkedIn ID of the related post."},"userId":{"type":"string","nullable":true,"description":"Author ID of the related post."},"hashtags":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"embeddedLinks":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."}},"required":["postUrl","postId","userId","hashtags","embeddedLinks"],"description":"Related post surfaced by LinkedIn."},"description":"Related posts surfaced by LinkedIn."},"topVisibleComments":{"type":"array","nullable":true,"items":{"type":"object","properties":{"authorProfileUrl":{"type":"string","nullable":true,"description":"Comment author's profile URL."},"authorUserId":{"type":"string","nullable":true,"description":"Comment author's user id."},"authorName":{"type":"string","nullable":true,"description":"Comment author's display name."},"publishedAt":{"type":"string","nullable":true,"description":"When the comment was posted."},"text":{"type":"string","nullable":true,"description":"Comment text."},"taggedProfileUrls":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"reactionCount":{"type":"integer","nullable":true,"minimum":0,"description":"Reactions on the comment when available."},"authorTitle":{"type":"string","nullable":true,"description":"Comment author's title when available."},"images":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."}},"required":["authorProfileUrl","authorUserId","authorName","publishedAt","text","taggedProfileUrls","reactionCount","authorTitle","images"],"description":"Top visible comment on a post."},"description":"Top comments visible without signing in."},"authorFollowers":{"type":"integer","nullable":true,"minimum":0,"description":"Number of followers of the author."},"authorPostCount":{"type":"integer","nullable":true,"minimum":0,"description":"Author's post count when available."},"authorArticleCount":{"type":"integer","nullable":true,"minimum":0,"description":"Author's article count when available."},"postType":{"type":"string","nullable":true,"description":"Post type such as post, repost, or article."},"accountType":{"type":"string","nullable":true,"description":"Author account type such as Person or Company."},"postTextHtml":{"type":"string","nullable":true,"description":"Post text with HTML markup and line breaks."},"repost":{"type":"object","nullable":true,"properties":{"repostUrl":{"type":"string","nullable":true,"description":"URL of the original post."},"repostUserId":{"type":"string","nullable":true,"description":"Original poster's user id."},"repostUserName":{"type":"string","nullable":true,"description":"Original poster's display name."},"repostText":{"type":"string","nullable":true,"description":"Text of the original post."},"repostDate":{"type":"string","nullable":true,"description":"When the original post was published."},"repostId":{"type":"string","nullable":true,"description":"Original post id."},"repostUserTitle":{"type":"string","nullable":true,"description":"Original poster's title."},"repostHangtags":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"repostAttachments":{"type":"array","nullable":true,"items":{"type":"string"},"description":"String list when available."},"taggedUsers":{"type":"array","nullable":true,"items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"description":"Display name when available."},"url":{"type":"string","nullable":true,"description":"LinkedIn URL when available."}},"required":["name","url"],"description":"Named LinkedIn entity link."},"description":"People tagged in the repost."},"taggedCompanies":{"type":"array","nullable":true,"items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"description":"Display name when available."},"url":{"type":"string","nullable":true,"description":"LinkedIn URL when available."}},"required":["name","url"],"description":"Named LinkedIn entity link."},"description":"Companies tagged in the repost."}},"required":["repostUrl","repostUserId","repostUserName","repostText","repostDate","repostId","repostUserTitle","repostHangtags","repostAttachments","taggedUsers","taggedCompanies"],"description":"Original post details when this is a reshare."},"taggedCompanies":{"type":"array","nullable":true,"items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"description":"Display name when available."},"url":{"type":"string","nullable":true,"description":"LinkedIn URL when available."}},"required":["name","url"],"description":"Named LinkedIn entity link."},"description":"Companies tagged or mentioned in the post."},"taggedPeople":{"type":"array","nullable":true,"items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"description":"Display name when available."},"url":{"type":"string","nullable":true,"description":"LinkedIn URL when available."}},"required":["name","url"],"description":"Named LinkedIn entity link."},"description":"People tagged or mentioned in the post."},"authorName":{"type":"string","nullable":true,"description":"Author display name when available."},"authorProfileUrl":{"type":"string","nullable":true,"description":"Author profile URL when available."},"authorTitle":{"type":"string","nullable":true,"description":"Title of the post author."},"authorProfilePicUrl":{"type":"string","nullable":true,"description":"Author profile picture URL."},"authorConnectionCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of connections of the author."},"videoDurationSec":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of attached video in seconds."},"externalLinkPreviews":{"type":"array","nullable":true,"items":{"nullable":true},"description":"Preview cards for external links when available."},"videoThumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail URL for attached video."},"documentCoverImageUrl":{"type":"string","nullable":true,"description":"Cover image URL for an attached document."},"documentPageCount":{"type":"integer","nullable":true,"minimum":0,"description":"Page count for an attached document."},"originalPostText":{"type":"string","nullable":true,"description":"Post text as shown on LinkedIn including line breaks."}},"required":["id","url","authorUserId","title","headline","text","publishedAt","hashtags","embeddedLinks","images","videos","metrics","moreArticlesByUser","moreRelevantPosts","topVisibleComments","authorFollowers","authorPostCount","authorArticleCount","postType","accountType","postTextHtml","repost","taggedCompanies","taggedPeople","authorName","authorProfileUrl","authorTitle","authorProfilePicUrl","authorConnectionCount","videoDurationSec","externalLinkPreviews","videoThumbnailUrl","documentCoverImageUrl","documentPageCount","originalPostText"],"description":"One post from a LinkedIn profile feed."},"description":"Posts from the requested profile."},"summary":{"type":"object","properties":{"returned":{"type":"integer","minimum":0,"description":"Number of posts returned in this response."}},"required":["returned"],"description":"Summary counts for this response."}},"required":["lookupStatus","posts","summary"],"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":{"lookupStatus":"found","posts":[{"id":"7466220443365081088","url":"https://www.linkedin.com/posts/bradsmi_twenty-years-ago-microsoft-broke-ground-activity-7466220443365081088-YQ8v","authorUserId":"bradsmi","title":"Twenty years ago, Microsoft broke ground on our first data center in Quincy, Washington. At a time when so many small towns have been shrinking, Quincy has grown, and the partnership behind that… | Brad Smith | 52 comments","headline":"Twenty years ago, Microsoft broke ground on our first data center in Quincy, Washington.","text":"Twenty years ago, Microsoft broke ground on our first data center in Quincy, Washington. At a time when so many small towns have been shrinking, Quincy has grown, and the partnership behind that story is one worth telling. Watch how a farm town in Central Washington helped build the cloud, and built a thriving future of its own. https://lnkd.in/ePjWhyQu","publishedAt":"2026-05-29T20:14:29.349Z","hashtags":null,"embeddedLinks":["https://www.linkedin.com/company/microsoft?trk=public_post-text","https://lnkd.in/ePjWhyQu"],"images":null,"videos":["https://dms.licdn.com/playlist/vid/v2/D4E05AQFWwAf-SzEhZg/mp4-640p-30fp-crf28/B4EZ51XxxfGwB4-/0/1780085663161?e=2147483647&v=beta&t=MytLeR9e_VgO33RHS0Jb41YMUg2itJFf6PidLjddRq8"],"metrics":{"likes":873,"comments":52,"reposts":null},"moreArticlesByUser":null,"moreRelevantPosts":null,"topVisibleComments":[{"authorProfileUrl":"https://au.linkedin.com/in/ronhulks?trk=public_post_comment_actor-name","authorUserId":"ronhulks","authorName":"Ron H.","publishedAt":"2026-05-31T07:49:06.970Z","text":"This is the part of technology stories people usually skip. The breakthrough gets the spotlight. But the real advantage is usually built much earlier, when the work still looks boring. Power. Land. Trust. Local patience. Operational follow-through. AI will be no different. The visible leap will depend on the invisible system underneath it.","taggedProfileUrls":null,"reactionCount":2,"authorTitle":null,"images":null},{"authorProfileUrl":"https://vc.linkedin.com/in/jodie-dennie?trk=public_post_comment_actor-name","authorUserId":"jodie-dennie","authorName":"Jodie Dennie","publishedAt":"2026-05-30T02:43:04.183Z","text":"Brad, Rhonda from Idle Hour Restaurant: “people just get in there and help.” That 6-second line explains Quincy’s 20-year arc better than any stat. You broke ground in 2006 on what looked like empty farmland. Today it’s 6x bigger + powering AI. But the video shows the real infrastructure: partnerships, not just servers. Farm town + tech giant building future together. That’s what “thriving future of its own” actually looks like. OST truth: We have Rhondas too. The diner owner, the bus driver, the grandma who “just gets in there and helps” kids for 10 years before anyone notices ROI. Quincy proves infrastructure isn’t steel + fiber first. It’s people showing up for decades. Then the data center follows. Question from youth work: Microsoft measured Quincy’s growth in petabytes + jobs. If you measured “human infrastructure” in a town, what 1 metric would prove a community is building for 20 years, not 2 quarters? Because kids need that same long-game partnership.","taggedProfileUrls":null,"reactionCount":2,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/marynadeundiak?trk=public_post_comment_actor-name","authorUserId":"marynadeundiak","authorName":"Maryna Deundiak, PhD","publishedAt":"2026-05-29T21:11:47.348Z","text":"Twenty years is long enough to prove that technology isn't the moat. Organizational adaptability is. Most companies survive one technology wave. Very few successfully re-architect themselves for the next one.","taggedProfileUrls":null,"reactionCount":8,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/fabiano-juares-dos-santos-b50036169?trk=public_post_comment_actor-name","authorUserId":"fabiano-juares-dos-santos-b50036169","authorName":"Fabiano Juares dos Santos","publishedAt":"2026-06-04T03:29:52.686Z","text":"The success of a technology ecosystem is measured not only by what it builds, but by the opportunities it creates for the communities around it. A powerful example of long-term partnership and impact","taggedProfileUrls":null,"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/amanda-a-248803206?trk=public_post_comment_actor-name","authorUserId":"amanda-a-248803206","authorName":"Amanda A.","publishedAt":"2026-05-29T21:56:39.149Z","text":"The cloud may be built on technology, but its success is ultimately powered by people and communities. Quincy’s story is a great reminder of what strong partnerships can achieve.","taggedProfileUrls":null,"reactionCount":6,"authorTitle":null,"images":null},{"authorProfileUrl":"https://tr.linkedin.com/in/semih-tinsel-85222a1a6?trk=public_post_comment_actor-name","authorUserId":"semih-tinsel-85222a1a6","authorName":"Semih Tinsel","publishedAt":"2026-05-31T18:37:40.238Z","text":"Sosyal medya artık şirketler için vazgeçilmez bir iletişim alanı. Bu alanda yapay zekâ entegrasyonu markaların görünürlüğünü ve etkileşimini kat kat artırıyor. İstanbul’da faaliyet gösteren Konvert Reklam Ajansı, bu iki gücü birleştirerek dijital dünyada profesyonel çözümler sunan örneklerden biri olarak öne çıkıyor. AI #SocialMedia #Istanbul #Konvert","taggedProfileUrls":null,"reactionCount":3,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/ingridjohnson?trk=public_post_comment_actor-name","authorUserId":"ingridjohnson","authorName":"Ingrid Johnson","publishedAt":"2026-05-30T11:17:54.542Z","text":"You have not been able to build ONE data center for your AI. You start and then as soon as people hear about it they freak out and pressure their government to stop. BlackRock is buying up local farms around these proposed data centers sites to drain underground aquaphors - already strained to extreme levels just for growing crops and providing potable water. No one likes you. Everybody hates your data centers. Because you straight up told them they were going to lose their jobs. Now we have to ask ourselves what this compute is for because large language models are not using the large language model anymore. They’re using something called RAG- it uses zero GPU from data centers and that is now roughly 80% of your customer base . These data centers are for literally nothing. There is no demand. At all. Please take your data centers and build them in your backyard Brad Smith Then Mark Zuckerberg, Elon, Satya, Sam Altman, Dario and his sister? They can build data centers in their yards too You made that error. The only thing you can do about it is crying in your car. I suggest doing that first thing in the morning. You are forgetting something: people vote. And right now? It’s a HARD NO. For every single one.","taggedProfileUrls":["https://www.linkedin.com/in/bradsmi?trk=public_post_comment-text"],"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/pstanczyc?trk=public_post_comment_actor-name","authorUserId":"pstanczyc","authorName":"Patrick Stanczyc","publishedAt":"2026-05-29T21:52:00.769Z","text":"I am glad to have been part of the construction and commissioning for most of the Microsoft data centers in Quincy and Wenatchee Metro.","taggedProfileUrls":null,"reactionCount":3,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/davidzey?trk=public_post_comment_actor-name","authorUserId":"davidzey","authorName":"David Zey","publishedAt":"2026-05-29T20:37:56.193Z","text":"Thank you for sharing this.","taggedProfileUrls":null,"reactionCount":3,"authorTitle":null,"images":null}],"authorFollowers":373757,"authorPostCount":1891,"authorArticleCount":55,"postType":"post","accountType":"Person","postTextHtml":"Twenty years ago, <a class=\"link\" href=\"https://www.linkedin.com/company/microsoft?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Microsoft</a> broke ground on our first data center in Quincy, Washington. At a time when so many small towns have been shrinking, Quincy has grown, and the partnership behind that story is one worth telling. Watch how a farm town in Central Washington helped build the cloud, and built a thriving future of its own. <a class=\"link\" href=\"https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Flnkd%2Ein%2FePjWhyQu&amp;urlhash=inY5&amp;trk=public_post-text\" target=\"_self\" rel=\"nofollow\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>https://lnkd.in/ePjWhyQu</a> ","repost":null,"taggedCompanies":null,"taggedPeople":null,"authorName":null,"authorProfileUrl":"https://www.linkedin.com/in/bradsmi","authorTitle":null,"authorProfilePicUrl":"https://media.licdn.com/dms/image/v2/C5603AQGnYfaUI8S0zQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516342848914?e=2147483647&v=beta&t=DxjyeHtTGI0kYUGuFk6NQZ_rZcz6OSwLhr-g9AmpOcg","authorConnectionCount":500,"videoDurationSec":178,"externalLinkPreviews":null,"videoThumbnailUrl":"https://media.licdn.com/dms/image/v2/D4E05AQFWwAf-SzEhZg/videocover-high/B4EZ51XxxfGwBY-/0/1780085645189?e=2147483647&v=beta&t=18VHD_u-G3h9nLsiX6tS-nwJlJh0Im6LzguBnNvUYSw","documentCoverImageUrl":null,"documentPageCount":null,"originalPostText":"Twenty years ago, <a class=\"link\" href=\"https://www.linkedin.com/company/microsoft?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Microsoft</a> broke ground on our first data center in Quincy, Washington. At a time when so many small towns have been shrinking, Quincy has grown, and the partnership behind that story is one worth telling. Watch how a farm town in Central Washington helped build the cloud, and built a thriving future of its own. <a class=\"link\" href=\"https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Flnkd%2Ein%2FePjWhyQu&amp;urlhash=inY5&amp;trk=public_post-text\" target=\"_self\" rel=\"nofollow\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>https://lnkd.in/ePjWhyQu</a> "},{"id":"7466163955799949312","url":"https://www.linkedin.com/posts/microsoft_msbuild-activity-7466163955799949312-Xu-9","authorUserId":"microsoft","title":"#msbuild | Microsoft | 21 comments","headline":"Turning up the volume on what's next.","text":"Turning up the volume on what's next. #MSBuild kicks off on June 2.","publishedAt":"2026-05-29T16:30:01.665Z","hashtags":["#MSBuild"],"embeddedLinks":["https://www.linkedin.com/feed/hashtag/msbuild"],"images":null,"videos":["https://dms.licdn.com/playlist/vid/v2/D4E10AQH2TikQeax8tA/mp4-360p-30fp-crf28/B4EZ5yinUBIkBc-/0/1780038140502?e=2147483647&v=beta&t=HbSUS8apIjOWrQglYMAVU-ngi2Bt54YgcXc6q9FAzLM"],"metrics":{"likes":513,"comments":21,"reposts":null},"moreArticlesByUser":null,"moreRelevantPosts":null,"topVisibleComments":[{"authorProfileUrl":"https://www.linkedin.com/company/microsoft?trk=public_post_comment_actor-name","authorUserId":"microsoft","authorName":"Microsoft","publishedAt":"2026-05-29T16:31:44.737Z","text":"Catch the keynote livestream here: https://msft.it/6008vZwC2","taggedProfileUrls":null,"reactionCount":25,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/michele-curtis-42166882?trk=public_post_comment_actor-name","authorUserId":"michele-curtis-42166882","authorName":"Michele Curtis","publishedAt":"2026-05-29T17:35:38.595Z","text":"The biggest shift won't be a faster AI model. It will be AI moving from productivity tool to execution layer. Organizations that learn how to combine human judgment with autonomous action will create a compounding advantage in speed, scale, and decision quality. The next era of transformation belongs to companies that redesign work itself, not just the technology stack.","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://in.linkedin.com/in/vijaya-lakshmi-046b5b193?trk=public_post_comment_actor-name","authorUserId":"vijaya-lakshmi-046b5b193","authorName":"Vijaya Lakshmi","publishedAt":"2026-05-30T08:33:33.860Z","text":"Excited to see #MSBuild kick off June 2 — where developers, innovators, and creators come together to shape the future of technology.","taggedProfileUrls":null,"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://in.linkedin.com/in/rahul-kr-yadav-qwi?trk=public_post_comment_actor-name","authorUserId":"rahul-kr-yadav-qwi","authorName":"Rahul Kr. Yadav","publishedAt":"2026-06-01T10:03:48.575Z","text":"Great perspective. As AI capabilities continue to evolve, the focus is shifting from simply building models to creating real business value through practical implementation. The organizations that succeed will be those that combine innovation with strong governance, user adoption, and measurable outcomes rather than chasing technology alone.","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://bd.linkedin.com/in/shakib-hossan-005174411?trk=public_post_comment_actor-name","authorUserId":"shakib-hossan-005174411","authorName":"Shakib Hossan","publishedAt":"2026-05-30T21:41:58.093Z","text":"র","taggedProfileUrls":null,"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://gh.linkedin.com/in/franklin-adusei-8b5022368?trk=public_post_comment_actor-name","authorUserId":"franklin-adusei-8b5022368","authorName":"Franklin Adusei","publishedAt":"2026-05-30T12:04:43.961Z","text":"Excited to be actively involved in this","taggedProfileUrls":null,"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/emira-chismar-95a970360?trk=public_post_comment_actor-name","authorUserId":"emira-chismar-95a970360","authorName":"Emira Chismar","publishedAt":"2026-05-31T05:04:47.869Z","text":"Excited for this! Looking forward to what’s next from","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/opasos?trk=public_post_comment_actor-name","authorUserId":"opasos","authorName":"Tessa S.","publishedAt":"2026-06-01T12:15:46.347Z","text":"I am so excited ... Anyone has any idea?","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null}],"authorFollowers":28291088,"authorPostCount":0,"authorArticleCount":0,"postType":"post","accountType":"Organization","postTextHtml":"Turning up the volume on what&apos;s next. <a class=\"link\" href=\"https://www.linkedin.com/signup/cold-join?session_redirect=https%3A%2F%2Fwww.linkedin.com%2Ffeed%2Fhashtag%2Fmsbuild&amp;trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>#MSBuild</a> kicks off on June 2.","repost":null,"taggedCompanies":null,"taggedPeople":null,"authorName":null,"authorProfileUrl":"https://www.linkedin.com/company/microsoft","authorTitle":null,"authorProfilePicUrl":"https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY","authorConnectionCount":500,"videoDurationSec":10,"externalLinkPreviews":null,"videoThumbnailUrl":"https://media.licdn.com/dms/image/v2/D4E10AQH2TikQeax8tA/videocover-high/B4EZ5yinUBIkAk-/0/1780038139020?e=2147483647&v=beta&t=6GQ2eHkUPIeQ7fl-SbF8A-nY0PdCcLoagQcgPgYDobo","documentCoverImageUrl":null,"documentPageCount":null,"originalPostText":"Turning up the volume on what&apos;s next. <a class=\"link\" href=\"https://www.linkedin.com/signup/cold-join?session_redirect=https%3A%2F%2Fwww.linkedin.com%2Ffeed%2Fhashtag%2Fmsbuild&amp;trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>#MSBuild</a> kicks off on June 2."},{"id":"7467708995189895168","url":"https://www.linkedin.com/posts/satyanadella_with-project-solara-we-are-building-a-new-activity-7467708995189895168-IaU8","authorUserId":"satyanadella","title":"With Project Solara, we are building a new platform purpose-built for agent-first devices. Excited to work with Cristiano R. Amon and Qualcomm on this! | Satya Nadella | 50 comments","headline":"With Project Solara, we are building a new platform purpose-built for agent-first devices.","text":"With Project Solara, we are building a new platform purpose-built for agent-first devices. Excited to work with Cristiano R. Amon and Qualcomm on this!","publishedAt":"2026-06-02T22:49:27.760Z","hashtags":null,"embeddedLinks":["https://www.linkedin.com/in/cristiano-r-amon?trk=public_post-text","https://www.linkedin.com/company/qualcomm?trk=public_post-text"],"images":null,"videos":["https://dms.licdn.com/playlist/vid/v2/D5605AQHOFnOdM5r6_A/mp4-720p-30fp-crf28/B56Z6JXCAhGoCM-/0/1780421007762?e=2147483647&v=beta&t=DLF5EDx4Ov_LtwWSbfabFQodMx3sGI73ZyUj5xu6thA"],"metrics":{"likes":630,"comments":50,"reposts":null},"moreArticlesByUser":null,"moreRelevantPosts":null,"topVisibleComments":[{"authorProfileUrl":"https://bd.linkedin.com/in/sazzad-hossain-pme220820?trk=public_post_comment_actor-name","authorUserId":"sazzad-hossain-pme220820","authorName":"SAZZAD HOSSAIN","publishedAt":"2026-06-03T16:27:59.848Z","text":"🚀 Reimagining Microsoft: Opening the Window to the Future 🚀 I edited a new Microsoft logo with a vision of “opening the window to the future.” The design represents a window expanding outward to explore deeper innovation and next-generation technologies. Each colored panel symbolizes different dimensions of technology — creativity, intelligence, connectivity, and growth. The perspective effect creates the feeling that the window is opening beyond boundaries, reflecting Microsoft’s continuous journey toward AI, cloud computing, and the future digital world. Through this concept, I wanted to keep the iconic identity recognizable while giving it a more futuristic and dynamic expression. Would love to hear feedback from the design community and the team at Microsoft . 🚀 #Microsoft #LogoDesign #BrandIdentity #FutureTechnology #Innovation #AI #GraphicDesign #CreativeDesign #TechVision #LinkedInCreators","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/ashrafelnashar?trk=public_post_comment_actor-name","authorUserId":"ashrafelnashar","authorName":"Dr. Ashraf Elnashar","publishedAt":"2026-06-03T01:31:40.226Z","text":"The shift from app-first to agent-first is the right framing — but it moves the hard problem from the device to the architecture underneath it. When agents act before you ask, the questions that matter are: who authorized that action, what scope did it have, and what happens when it's wrong? The device layer is Qualcomm's problem. The identity, permissioning, and audit layer is every enterprise architect's problem. Project Solara makes that second problem more urgent, not less. Watching how the enterprise security stack evolves around agent-first devices closely.","taggedProfileUrls":null,"reactionCount":3,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/bhaskargangi?trk=public_post_comment_actor-name","authorUserId":"bhaskargangi","authorName":"Bhaskar Gangipamula","publishedAt":"2026-06-03T16:38:14.892Z","text":"The vertical-to-horizontal argument is the part of this conversation that matters most for enterprise. Every time computing moved to a new form factor, enterprises got stuck managing fragmented, vertical stacks. The open platform bet here means enterprise AI deployment does not have to be rebuilt for every new device context. That is a different starting point than we had with mobile, and it changes how enterprise architects think about agent infrastructure.","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://in.linkedin.com/in/arijit-ghosh-7363092?trk=public_post_comment_actor-name","authorUserId":"arijit-ghosh-7363092","authorName":"Arijit Ghosh","publishedAt":"2026-06-02T22:59:33.660Z","text":"We spent 30 years building devices for apps. Now we are building devices for agents. The shift sounds technical. It isn't. An app waits to be opened. An agent acts before you ask. That's not a new product. That's a new relationship between humans and machines. 🌏","taggedProfileUrls":null,"reactionCount":1,"authorTitle":null,"images":null},{"authorProfileUrl":"https://in.linkedin.com/in/diinesh-bhati-2b188514?trk=public_post_comment_actor-name","authorUserId":"diinesh-bhati-2b188514","authorName":"Diinesh Bhati","publishedAt":"2026-06-03T03:39:58.429Z","text":"Project Solara feels like a glimpse into what comes after the app era. For decades, we've interacted with software through screens, apps, menus, and clicks. The vision here is fundamentally different: AI agents that understand context, move across devices, and help complete tasks rather than simply launch applications. What stands out is that Microsoft isn't just building better AI models—it's rethinking the entire computing stack, from devices and operating systems to agents and enterprise workflows. That's a much bigger bet than adding AI features to existing products. If the PC era was defined by apps and the mobile era by touch, the next era may be defined by agents that work alongside us across every form factor. Exciting times ahead for builders, developers, and anyone imagining what human-computer interaction looks like beyond the smartphone. 🚀","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://in.linkedin.com/company/vishal-show?trk=public_post_comment_actor-name","authorUserId":"vishal-show","authorName":"Vishal Show","publishedAt":"2026-06-03T10:24:11.244Z","text":"The platform plays, but adoption hinges on organizational readiness, not device capability. Agent-centric devices require decision architecture, governance models, and trust frameworks most organizations don't have. The companies extracting value won't be those with better agents. They'll be those that can restructure how decisions actually get made and who controls agent autonomy boundaries.","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://au.linkedin.com/in/ronhulks?trk=public_post_comment_actor-name","authorUserId":"ronhulks","authorName":"Ron H.","publishedAt":"2026-06-03T12:14:02.535Z","text":"Agent-first devices are a bigger shift than they first look. The screen used to be where humans stayed in control. If agents start working inside the device, that control point moves. Then the hard question is not what the device can do. It is what the agent is allowed to see, decide, and trigger. That is where the real operating risk begins.","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://uk.linkedin.com/in/aslamsulaimalebbe?trk=public_post_comment_actor-name","authorUserId":"aslamsulaimalebbe","authorName":"Aslam Sulaimalebbe, PhD CEng SMIEEE","publishedAt":"2026-06-03T11:14:07.600Z","text":"A fascinating shift, the technology challenge is no longer just making agents more capable, but making them dependable in real-world environments where context, uncertainty, and consequences matter. as agentic systems move beyond productivity tools and into operational domains, success will increasingly depend on trust, validation, and the ability to demonstrate reliable behaviour under conditions that differ from those seen during development the next platform era may be defined as much by assurance and adoption as by AI capability itself..","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null},{"authorProfileUrl":"https://www.linkedin.com/in/opasos?trk=public_post_comment_actor-name","authorUserId":"opasos","authorName":"Tessa S.","publishedAt":"2026-06-03T14:15:11.209Z","text":"As hyperscalers deploy agentic AI at scale, enterprises face a new problem: AI systems that can take action without governance. Onpoint Authority Systems, Inc. (OPAS) solves this by providing the authority layer that governs how AI agents operate, ensuring every action is controlled, compliant, and auditable. Let's connect!","taggedProfileUrls":null,"reactionCount":0,"authorTitle":null,"images":null}],"authorFollowers":12005284,"authorPostCount":1012,"authorArticleCount":56,"postType":"repost","accountType":"Person","postTextHtml":"With Project Solara, we are building a new platform purpose-built for agent-first devices.<br/><br/>Excited to work with <a class=\"link\" href=\"https://www.linkedin.com/in/cristiano-r-amon?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Cristiano R. Amon</a> and <a class=\"link\" href=\"https://www.linkedin.com/company/qualcomm?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Qualcomm</a> on this!","repost":{"repostUrl":"https://www.linkedin.com/feed/update/urn:li:ugcPost:7467626258689019905","repostUserId":"cristiano-r-amon","repostUserName":"Cristiano R. Amon","repostText":"We are in the middle of a platform shift: moving from devices built for apps and operating systems to devices built around agents. It’s changing the nature of computing, from silicon to cloud. In my conversation with Satya Nadella , we talked about what this means for the next era of computing, especially as AI changes how we interact with technology. The opportunity is to build agentic experiences that feel natural, personal, and useful across many form factors. Watch our discussion from #MSBuild . Read the OnQ blog post for more. https://lnkd.in/gW6EwiCf","repostDate":"2026-06-02T17:23:33.978Z","repostId":"7467626980612444160","repostUserTitle":null,"repostHangtags":["#MSBuild"],"repostAttachments":null,"taggedUsers":[{"name":"Satya Nadella","url":"https://www.linkedin.com/in/satyanadella?trk=public_post_reshare-text"}],"taggedCompanies":null},"taggedCompanies":[{"name":"Qualcomm","url":"https://www.linkedin.com/company/qualcomm?trk=public_post-text"}],"taggedPeople":[{"name":"Cristiano R. Amon","url":"https://www.linkedin.com/in/cristiano-r-amon?trk=public_post-text"}],"authorName":null,"authorProfileUrl":"https://www.linkedin.com/in/satyanadella?trk=public_post_feed-actor-image","authorTitle":null,"authorProfilePicUrl":"https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1579726625448?e=2147483647&v=beta&t=pJA2hyC4PlS23HlA6irA5KUc4dYwuwm4IAFtk2yge84","authorConnectionCount":500,"videoDurationSec":null,"externalLinkPreviews":null,"videoThumbnailUrl":"https://media.licdn.com/dms/image/v2/D5605AQHOFnOdM5r6_A/videocover-high/B56Z6JXCAhGoBQ-/0/1780420987939?e=2147483647&v=beta&t=_c_8lU4r1wy12aFDYQnJe0wDbXn43NyP_YuM9MhTnkI","documentCoverImageUrl":null,"documentPageCount":null,"originalPostText":"With Project Solara, we are building a new platform purpose-built for agent-first devices.\n\nExcited to work with <a class=\"link\" href=\"https://www.linkedin.com/in/cristiano-r-amon?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Cristiano R. Amon</a> and <a class=\"link\" href=\"https://www.linkedin.com/company/qualcomm?trk=public_post-text\" target=\"_self\" data-tracking-control-name=\"public_post-text\" data-tracking-will-navigate>Qualcomm</a> on this!"}],"summary":{"returned":3}},"meta":{"requestId":"req_01example_profile_posts","creditsCharged":6,"version":"v1"}}}}},"400":{"description":"Invalid profile URL or date range","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/profiles":{"get":{"tags":["LinkedIn"],"summary":"Get LinkedIn profiles","description":"Get LinkedIn profiles by URL or handle.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":100,"batch":{"maxUnits":50,"unit":"url"}},"x-socialfetch-credits-pricing":"2 credits per profile URL requested. Up to 50 profiles per request (100 credits max).","parameters":[{"schema":{"type":"array","items":{"type":"string","minLength":1,"maxLength":4096,"description":"LinkedIn profile URL, vanity handle, `@handle`, or `in/{handle}` path."},"minItems":1,"maxItems":50,"description":"LinkedIn profile URL."},"required":true,"description":"LinkedIn profile URL.","name":"url","in":"query"}],"responses":{"200":{"description":"Batch lookup results. Inspect each `data.results[].lookupStatus` for `found`, `not_found`, or `error`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Requested profile URL echoed for this result."},"lookupStatus":{"type":"string","enum":["found","not_found","error"],"description":"Whether this profile was resolved."},"error":{"type":"object","nullable":true,"properties":{"message":{"type":"string","minLength":1,"description":"Short customer-safe reason this profile could not be returned."}},"required":["message"],"description":"Error details when `lookupStatus` is `error`."},"profile":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["linkedin"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"LinkedIn public profile handle without the leading @."},"numericId":{"type":"string","nullable":true,"description":"LinkedIn numeric profile id when available."},"displayName":{"type":"string","nullable":true,"description":"Public display name on the profile when available."},"firstName":{"type":"string","nullable":true,"description":"First name when available."},"lastName":{"type":"string","nullable":true,"description":"Last name when available."},"headline":{"type":"string","nullable":true,"description":"Profile headline or position line when available."},"bio":{"type":"string","nullable":true,"description":"Profile summary or about text when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL when available."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public LinkedIn profile URL for this handle."},"location":{"type":"string","nullable":true,"description":"Location label when available."},"city":{"type":"string","nullable":true,"description":"City label when available."},"countryCode":{"type":"string","nullable":true,"description":"ISO country code when available."},"influencer":{"type":"boolean","nullable":true,"description":"Whether LinkedIn marks this profile as an influencer."},"memorialized":{"type":"boolean","nullable":true,"description":"Whether this is a memorialized account."},"defaultAvatar":{"type":"boolean","nullable":true,"description":"Whether the avatar is LinkedIn's default placeholder."},"currentCompany":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Current company name when available."},"companyId":{"type":"string","nullable":true,"description":"LinkedIn company slug when available."},"title":{"type":"string","nullable":true,"description":"Current role title at the company when available."},"url":{"type":"string","nullable":true,"description":"LinkedIn company URL when available."},"location":{"type":"string","nullable":true,"description":"Current company location label when available."}},"required":["name","companyId","title","url","location"],"description":"Current company details when available."},"websites":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","nullable":true,"description":"Website label when available."},"url":{"type":"string","minLength":1,"description":"External website URL."}},"required":["title","url"],"description":"External website linked from the profile."},"description":"External websites linked from the profile."},"experience":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","nullable":true,"description":"Role title when available."},"company":{"type":"string","nullable":true,"description":"Company name when available."},"companyLogoUrl":{"type":"string","nullable":true,"description":"Company logo URL when available."},"description":{"type":"string","nullable":true,"description":"Role description when available."},"startDate":{"type":"string","nullable":true,"description":"Start date label when available."},"endDate":{"type":"string","nullable":true,"description":"End date label when available."}},"required":["title","company","companyLogoUrl","description","startDate","endDate"],"description":"One work experience entry."},"description":"Work experience entries when available."},"education":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","nullable":true,"description":"School or program name when available."},"url":{"type":"string","nullable":true,"description":"School URL when available."},"startYear":{"type":"string","nullable":true,"description":"Start year when available."},"endYear":{"type":"string","nullable":true,"description":"End year when available."},"description":{"type":"string","nullable":true,"description":"Education description when available."}},"required":["title","url","startYear","endYear","description"],"description":"One education entry."},"description":"Education entries when available."},"languages":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Language name."},"proficiency":{"type":"string","nullable":true,"description":"Proficiency label when available."}},"required":["name","proficiency"],"description":"One language entry."},"description":"Language entries when available."},"organizations":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Organization name."},"membershipType":{"type":"string","nullable":true,"description":"Membership type or role when available."},"startDate":{"type":"string","nullable":true,"description":"Start date when available."},"endDate":{"type":"string","nullable":true,"description":"End date when available."}},"required":["title","membershipType","startDate","endDate"],"description":"One organization membership entry."},"description":"Organization memberships when available."},"publications":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Publication title."},"publisher":{"type":"string","nullable":true,"description":"Publisher when available."},"date":{"type":"string","nullable":true,"description":"Publication date when available."}},"required":["title","publisher","date"],"description":"One publication entry."},"description":"Publication entries when available."},"projects":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Project title."},"startDate":{"type":"string","nullable":true,"description":"Start date when available."},"description":{"type":"string","nullable":true,"description":"Project description when available."}},"required":["title","startDate","description"],"description":"One project entry."},"description":"Project entries when available."},"honorsAndAwards":{"type":"array","items":{"type":"string"},"description":"Honors and awards text entries when available."},"recommendations":{"type":"array","items":{"type":"string"},"description":"Recommendation text entries when available."},"certifications":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Entry title."},"subtitle":{"type":"string","nullable":true,"description":"Secondary label when available."},"meta":{"type":"string","nullable":true,"description":"Additional metadata when available."}},"required":["title","subtitle","meta"],"description":"Generic titled profile entry."},"description":"Certification entries when available."},"courses":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Entry title."},"subtitle":{"type":"string","nullable":true,"description":"Secondary label when available."},"meta":{"type":"string","nullable":true,"description":"Additional metadata when available."}},"required":["title","subtitle","meta"],"description":"Generic titled profile entry."},"description":"Course entries when available."},"volunteerExperience":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Entry title."},"subtitle":{"type":"string","nullable":true,"description":"Secondary label when available."},"meta":{"type":"string","nullable":true,"description":"Additional metadata when available."}},"required":["title","subtitle","meta"],"description":"Generic titled profile entry."},"description":"Volunteer experience entries when available."}},"required":["platform","handle","numericId","displayName","firstName","lastName","headline","bio","avatarUrl","bannerUrl","profileUrl","location","city","countryCode","influencer","memorialized","defaultAvatar","currentCompany","websites","experience","education","languages","organizations","publications","projects","honorsAndAwards","recommendations","certifications","courses","volunteerExperience"],"description":"Profile details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","nullable":true,"minimum":0,"description":"Follower count when available."},"connections":{"type":"integer","nullable":true,"minimum":0,"description":"Connection count when available."},"recommendationsCount":{"type":"integer","nullable":true,"minimum":0,"description":"Recommendation count when available."}},"required":["followers","connections","recommendationsCount"],"description":"Profile metrics when available."},"activity":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable activity id for this item when available."},"url":{"type":"string","minLength":1,"description":"Public URL for this activity."},"title":{"type":"string","nullable":true,"description":"Primary text or headline for the activity."},"interactionType":{"type":"string","nullable":true,"description":"Interaction label when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publication timestamp in ISO-8601 format when provided by the source."}},"required":["id","url","title","interactionType","thumbnailUrl","publishedAt"],"description":"A recent public activity item from the profile."},"description":"Recent public activities from the profile when available."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable post id when available."},"url":{"type":"string","minLength":1,"description":"Public URL for this authored post."},"title":{"type":"string","nullable":true,"description":"Post title when available."},"excerpt":{"type":"string","nullable":true,"description":"Post excerpt when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publication timestamp when available."},"interaction":{"type":"string","nullable":true,"description":"Engagement summary when available."}},"required":["id","url","title","excerpt","publishedAt","interaction"],"description":"An authored LinkedIn post from the profile."},"description":"Authored posts from the profile when available."},"relatedProfiles":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Related profile URL."},"name":{"type":"string","minLength":1,"description":"Related profile display name."},"headline":{"type":"string","nullable":true,"description":"Related profile headline when available."},"location":{"type":"string","nullable":true,"description":"Related profile location when available."}},"required":["url","name","headline","location"],"description":"A related profile suggestion."},"description":"Related profile suggestions when available."}},"required":["url","lookupStatus","error","profile","metrics","activity","posts","relatedProfiles"],"description":"LinkedIn profile lookup result for one requested URL."},"description":"Per-URL profile lookup results."},"summary":{"type":"object","properties":{"requestedUrls":{"type":"integer","minimum":0,"description":"Number of profile URLs requested in this batch."},"found":{"type":"integer","minimum":0,"description":"Number of profiles successfully found."},"notFound":{"type":"integer","minimum":0,"description":"Number of profiles that were not found."},"errored":{"type":"integer","minimum":0,"description":"Number of profiles that failed to resolve."}},"required":["requestedUrls","found","notFound","errored"],"description":"Summary counts for the profile batch."}},"required":["results","summary"],"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":{"results":[{"url":"https://www.linkedin.com/in/triciameinhold/","lookupStatus":"found","error":null,"profile":{"platform":"linkedin","handle":"triciameinhold","numericId":"29868240","displayName":"Patricia Meinhold, MBA","firstName":"Patricia","lastName":"Meinhold, MBA","headline":null,"bio":"Patricia is an accomplished non-profit leader with the proven ability to develop…","avatarUrl":"https://media.licdn.com/dms/image/v2/D5603AQFzBs8tJ_8asw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1746564632607?e=2147483647&v=beta&t=QFbp2oJfGwyGj8tDTiDCke7lB30PUmGtKdKiGA61Udg","bannerUrl":"https://media.licdn.com/dms/image/v2/C4E16AQFtDiv8OG7h8Q/profile-displaybackgroundimage-shrink_200_800/profile-displaybackgroundimage-shrink_200_800/0/1626632267551?e=2147483647&v=beta&t=0e4ms6LhRip6OROr7ZBgHnUkdhvfn2TUpgyp862UMec","profileUrl":"https://www.linkedin.com/in/triciameinhold/","location":"Springfield","city":"Springfield, Missouri, United States","countryCode":"US","influencer":false,"memorialized":false,"defaultAvatar":false,"currentCompany":{"name":"Ozarks Regional YMCA","companyId":"ozarks-regional-ymca","title":null,"url":"https://www.linkedin.com/company/ozarks-regional-ymca?trk=public_profile_topcard-current-company","location":null},"websites":[],"experience":[],"education":[{"title":"Lindenwood University","url":"https://www.linkedin.com/school/lindenwooduniversity/","startYear":"1986","endYear":"1997","description":null}],"languages":[{"name":"German","proficiency":"Native or bilingual proficiency"},{"name":"Spanish","proficiency":"Elementary proficiency"}],"organizations":[{"title":"Illinois State Alliance YMCA","membershipType":"Board Member - Vice Chair","startDate":"Dec 2015","endDate":"Present"}],"publications":[],"projects":[],"honorsAndAwards":[],"recommendations":[],"certifications":[],"courses":[],"volunteerExperience":[]},"metrics":{"followers":852,"connections":500,"recommendationsCount":2},"activity":[{"id":"7467689985534480384","url":"https://www.linkedin.com/posts/ymca-of-coastal-carolina_congratulations-to-our-president-ceo-david-activity-7467689985534480384-w7pD","title":"Congratulations to our President & CEO, David Byrd, on receiving a Changemaker Award from Coastal Carolina University's Spadoni College of Education…","interactionType":"Liked by Patricia Meinhold, MBA","thumbnailUrl":"https://media.licdn.com/dms/image/v2/D4E10AQHemI8u_iGFyw/image-shrink_800/B4EZ6KNFxdJAAg-/0/1780435149194?e=2147483647&v=beta&t=67Hxb-ahpA9aPem7MiGl2LoU4lUCMghdfjqYOV9XLw4","publishedAt":null}],"posts":[],"relatedProfiles":[{"url":"https://www.linkedin.com/in/ken-strawbridge-6b76348","name":"Ken Strawbridge","headline":"Gateway Region YMCA","location":"1K followers St Louis, MO"}]},{"url":"https://www.linkedin.com/in/this-profile-does-not-exist-xyz123/","lookupStatus":"not_found","error":null,"profile":null,"metrics":null,"activity":[],"posts":[],"relatedProfiles":[]}],"summary":{"requestedUrls":2,"found":1,"notFound":1,"errored":0}},"meta":{"requestId":"req_01example_batch","creditsCharged":4,"version":"v1"}}}}},"400":{"description":"Invalid profile URL 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/companies/posts":{"get":{"tags":["LinkedIn"],"summary":"List LinkedIn company posts","description":"Get posts from a LinkedIn company page.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"This endpoint is for LinkedIn company pages only. If you have a school URL or another organization page type, use the Organization page endpoint instead."},"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":"LinkedIn company page URL or slug whose posts should be listed."},"required":true,"description":"LinkedIn company page URL or slug whose posts should be listed.","name":"url","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company."},"required":false,"description":"1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company.","name":"page","in":"query"}],"responses":{"200":{"description":"Company posts for the requested 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 page resolved for this request."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable activity identifier for the post."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this LinkedIn post."},"text":{"type":"string","nullable":true,"description":"Full text body of the post when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp for when the post was published, when available."}},"required":["id","url","text","publishedAt"],"description":"A single LinkedIn post from a company feed page."},"description":"Posts returned for the requested company page. This array may be empty when the page resolves but no posts are returned."},"page":{"type":"object","properties":{"currentPage":{"type":"integer","minimum":1,"maximum":7,"description":"1-based page number for this response."},"nextPage":{"type":"integer","nullable":true,"minimum":1,"maximum":7,"description":"Next page number to request when `hasMore` is true; otherwise null."},"hasMore":{"type":"boolean","description":"Whether another page of posts can be requested."},"maxPage":{"type":"number","enum":[7],"description":"Maximum page number that can be requested for this listing."}},"required":["currentPage","nextPage","hasMore","maxPage"],"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":"7459595190669025280","url":"https://www.linkedin.com/posts/shopify_entrepreneurs-are-turning-obsessions-into-activity-7459595190669025280-TDie","text":"The fastest-growing area of commerce isn't one category. It's thousands of new ones being created by entrepreneurs.\n\nAs the barriers to starting a business collapse, founders are turning specific obsessions into entire markets. Here's what the data shows:\n\n→ Nearly 55% of Shopify sales come from product categories outside the top 100. The mainstream is now the minority.\n\n→ One product is enough to start. Nearly 54% of new Shopify stores in 2025 launched in a specialized category, and 41% started with a single product.\n\n→ AI is a matchmaker for specialized products and the people who want them. 71% of AI-attributed orders in 2025 were for products outside the mainstream.\n\nNiche no longer means limited. The most specific ideas have the most room to grow.\n\nhttps://lnkd.in/e9-Xifty","publishedAt":"2026-05-11T13:28:06.015Z"},{"id":"7457081740642168832","url":"https://www.linkedin.com/posts/shopify_shopify-merchants-you-can-now-manage-your-activity-7457081740642168832-mVcS","text":"Shopify merchants, you can now manage your store inside ChatGPT or Claude.\n\nGet insights, add products, and look up orders, all without leaving the chat.\n\nConnect to ChatGPT → https://lnkd.in/eUsQiENu\nConnect to Claude → https://lnkd.in/eGGcHMZu","publishedAt":"2026-05-04T15:00:32.823Z"},{"id":"7455996656975638528","url":"https://www.linkedin.com/posts/shopify_outdoor-living-was-top-of-mind-for-us-consumers-activity-7455996656975638528-X5TZ","text":"Outdoor living was top of mind for U.S. consumers in April.\n\nWe looked at month-over-month sales from thousands of Shopify merchants to see what was trending. Here’s what stood out:\n\n→ Yard maintenance saw strong growth, with wagons jumping 4,744%. Grass edgers (+697%), sun shades (+254%), plant cages (+242%), and garden hoses (+232%) all saw triple digit increases.\n\n→ Outdoor pet products surged, led by dog houses (+1,910%), dog kennels and runs (+412%), stuffed toys (+163%), and cooling beds (+33%).\n\n→ Pool season officially started, with rash guards and swim shirts (+671%), pool maintenance kits (+163%), and water slides (+112%) all in demand.\n\n→ Golf season teed off too. Club shafts are up 197%, followed by club parts and accessories (+86%), putting mats (+60%), gloves (+37%), and swing trainers (+24%).\n\nIf April is any indication, summer demand is already building.","publishedAt":"2026-05-01T15:08:48.719Z"},{"id":"7452738252756746240","url":"https://www.linkedin.com/posts/shopify_business-owners-are-finding-financial-control-activity-7452738252756746240-jtqk","text":"Business owners are finding financial control in something a 9-5 can't give them: ownership.\n\nWe partnered with The Harris Poll to survey business owners across the U.S., Canada, the U.K., Australia, and Spain. One finding stood out: founders aren't just optimistic about the choice they made, they feel in control of it.\n\n→ In every market surveyed, business owners were more likely to say entrepreneurship feels more financially secure than a traditional job. In the U.S., the margin was roughly 2 to 1 (39% vs. 18%).\n\n→ In 4 of 5 markets, respondents said a traditional job requires more effort than running a business. In the U.S., nearly twice as many said so (46% vs. 24%).\n\n→ Across all 5 markets, 61 to 69% of founders said starting a business felt like moving toward something they wanted, not away from something unstable.\n\n→ In the U.S., 86% of entrepreneurs say ecommerce platforms have made it easier to start a business than a decade ago, and 67% say AI tools are making entrepreneurship more accessible.\n\nMost founders would make the same choice again. Not because it's easy. Because it's theirs.\n\nhttps://lnkd.in/ecPPkMtN","publishedAt":"2026-04-22T15:21:04.619Z"},{"id":"7450172848884711424","url":"https://www.linkedin.com/posts/shopify_the-most-future-proof-job-entrepreneurship-activity-7450172848884711424-a2X5","text":"More people are choosing to build, and the data says they're right to.\n\nWith millions of businesses running on Shopify, we have one of the most comprehensive real-time datasets on entrepreneurship. It all points to one thing: entrepreneurship is accelerating.\n\n→ More people are starting businesses: 7x more people made their first sale on Shopify in 2025 than in 2018.\n\n→ Repeat entrepreneurs scale faster: Merchants who have previously launched a business on Shopify and return to build a second earn more than 2x the sales per shop.\n\n→ Entrepreneurs continue to earn more: Merchants who started between 2017 and 2020 grew revenue 25% over three years.\n\nThe story is clear. As the traditional 9-to-5 path is contracting, entrepreneurship is expanding.\n\nIn the age of AI, entrepreneurship may be the more resilient path.\n\nhttps://lnkd.in/eDf4Auv9","publishedAt":"2026-04-15T13:27:04.667Z"},{"id":"7448102542032568320","url":"https://www.linkedin.com/posts/shopify_the-shopify-ai-toolkit-is-here-manage-activity-7448102542032568320-Bgis","text":"The Shopify AI Toolkit is here.\n\nManage your store with agents like Claude Code, Codex, Cursor, and VS Code.\n\nTry it out → https://lnkd.in/eRFpZ_AH","publishedAt":"2026-04-09T20:20:25.045Z"},{"id":"7447302113459654659","url":"https://www.linkedin.com/posts/shopify_tickets-are-live-for-dotdev-2026-get-ready-activity-7447302113459654659-p2Sz","text":"Tickets are live for DotDev 2026.\n\nGet ready for two full days of product demos, deep dives, and connecting with other builders.\n\nSee you in Toronto → https://lnkd.in/eSCeJyPK","publishedAt":"2026-04-07T15:19:48.013Z"},{"id":"7446919743191769088","url":"https://www.linkedin.com/posts/shopify_shopify-b2b-is-now-available-on-more-plans-activity-7446919743191769088-XoKe","text":"Shopify B2B is now available on more plans.\n\nAll plans now have access to our key B2B features directly in the admin.\n\nThe highlights: company profiles, vaulted credit cards, ACH payments, and up to three custom catalogs.\n\nhttps://lnkd.in/gFEPMadg","publishedAt":"2026-04-06T14:00:23.826Z"},{"id":"7445825000554565632","url":"https://www.linkedin.com/posts/shopify_from-biking-and-golf-gear-to-outdoor-furniture-activity-7445825000554565632-tp6T","text":"From biking and golf gear to outdoor furniture, warm weather shaped what US consumers bought in March.\n\nWe analyzed month-over-month sales from thousands of Shopify merchants to see what was trending. A few highlights:\n\n→ Lawn and garden season kicked off in a big way. Outdoor misting systems (+302%), sprinklers (+273%), rain barrels (+262%), and weed trimmers (+222%) all saw triple-digit growth.\n\n→ Backyards got an upgrade, with sunshades (+156%), gazebos (+146%), swing chairs (+130%), and outdoor sofas (+113%) all up. Backyard games, like paddle ball (+92%) and cornhole sets (+46%), were in demand too.\n\n→ Families geared up for bike season. Child bike seats surged 151%, followed by training wheels (+111%), hybrid bikes (+104%), bicycle baskets (+90%), and helmets (+66%).\n\n→ Golf season is back. As courses reopen, sales rose for golf club sets (+75%), tees (+51%), and bags (+48%).\n\nEntrepreneurs, what trends are you tracking this spring?","publishedAt":"2026-04-03T13:30:16.844Z"}],"page":{"currentPage":1,"nextPage":2,"hasMore":true,"maxPage":7}},"meta":{"requestId":"req_1816b9cf-6a6e-4343-b547-68caa1bf0b2d","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","posts":[{"id":"7421865816444309504","url":"https://www.linkedin.com/posts/knowit_example-activity-7421865816444309504-4M9a","text":"Another page of posts.","publishedAt":"2026-02-20T06:47:55.395Z"}],"page":{"currentPage":2,"nextPage":3,"hasMore":true,"maxPage":7}},"meta":{"requestId":"req_01example_p2","creditsCharged":1,"version":"v1"}}},"no_posts":{"value":{"data":{"lookupStatus":"found","posts":[],"page":{"currentPage":3,"nextPage":null,"hasMore":false,"maxPage":7}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","posts":[],"page":{"currentPage":1,"nextPage":null,"hasMore":false,"maxPage":7}},"meta":{"requestId":"req_01example_nf","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid company URL, page, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/organizations":{"get":{"tags":["LinkedIn"],"summary":"Get LinkedIn organization page","description":"Look up LinkedIn company, school, and organization pages by URL.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"This endpoint covers company, school, and other LinkedIn organization pages. If you only need a standard company page lookup, the Company page endpoint may be a better fit."},"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":100,"batch":{"maxUnits":50,"unit":"url"}},"x-socialfetch-credits-pricing":"2 credits per organization URL requested. Up to 50 organizations per request (100 credits max).","parameters":[{"schema":{"type":"array","items":{"type":"string","minLength":1,"maxLength":4096,"description":"LinkedIn organization page URL with a `/company/`, `/school/`, or `/organization-guest/company/` path."},"minItems":1,"maxItems":50,"description":"LinkedIn organization page URL."},"required":true,"description":"LinkedIn organization page URL.","name":"url","in":"query"}],"responses":{"200":{"description":"Batch lookup results. Inspect each `data.results[].lookupStatus` for `found`, `not_found`, or `error`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Requested organization URL echoed for this result."},"lookupStatus":{"type":"string","enum":["found","not_found","error"],"description":"Whether this organization page was resolved."},"error":{"type":"object","nullable":true,"properties":{"message":{"type":"string","minLength":1,"description":"Short customer-safe reason this organization could not be returned."}},"required":["message"],"description":"Error details when `lookupStatus` is `error`."},"organization":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["linkedin"],"description":"Social platform for this record."},"pageType":{"type":"string","enum":["company","school","organization"],"description":"LinkedIn page type for this organization."},"id":{"type":"string","minLength":1,"description":"Organization identifier as a string."},"slug":{"type":"string","minLength":1,"description":"Page vanity slug when available."},"name":{"type":"string","minLength":1,"description":"Organization display name."},"pageUrl":{"type":"string","minLength":1,"description":"Canonical public LinkedIn organization page URL."},"about":{"type":"string","nullable":true,"description":"About text when available."},"slogan":{"type":"string","nullable":true,"description":"Tagline when available."},"website":{"type":"string","nullable":true,"description":"Primary external website when available."},"websiteDomain":{"type":"string","nullable":true,"description":"Root website domain when available."},"logoUrl":{"type":"string","nullable":true,"description":"Logo image URL when available."},"coverImageUrl":{"type":"string","nullable":true,"description":"Cover image URL when available."},"industries":{"type":"string","nullable":true,"description":"Industry label when available."},"specialties":{"type":"array","items":{"type":"string","minLength":1},"description":"Specialty tags when available."},"organizationType":{"type":"string","nullable":true,"description":"Organization type label when available."},"employeeRange":{"type":"string","nullable":true,"description":"Reported employee range label when available."},"foundedYear":{"type":"integer","nullable":true,"description":"Founded year when available."},"headquarters":{"type":"string","nullable":true,"description":"Headquarters label when available."},"countryCode":{"type":"string","nullable":true,"description":"Primary country code when available."},"crunchbaseUrl":{"type":"string","nullable":true,"description":"Crunchbase profile URL when available."}},"required":["platform","pageType","id","name","pageUrl","about","website","logoUrl","coverImageUrl","industries","specialties","organizationType","employeeRange","headquarters"],"description":"Organization details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","nullable":true,"minimum":0,"description":"Follower count when available."},"employeesOnLinkedIn":{"type":"integer","nullable":true,"minimum":0,"description":"Employees listed on LinkedIn when available."},"alumni":{"type":"integer","nullable":true,"minimum":0,"description":"Alumni count when available."}},"required":["followers","employeesOnLinkedIn","alumni"],"description":"Organization metrics when available."},"locations":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string","minLength":1,"description":"Location label."},"countryCode":{"type":"string","nullable":true,"description":"Country code when available."}},"required":["label"],"description":"A location associated with the organization."},"description":"Location labels when available."},"featuredEmployees":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Person name."},"title":{"type":"string","nullable":true,"description":"Role or headline shown on the page."},"profileUrl":{"type":"string","nullable":true,"description":"LinkedIn profile URL when available."},"imageUrl":{"type":"string","nullable":true,"description":"Profile image URL when available."}},"required":["name","title","profileUrl","imageUrl"],"description":"A featured person shown on the organization page."},"description":"Featured people shown on the page when available."},"similarOrganizations":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Similar organization name."},"industries":{"type":"string","nullable":true,"description":"Industry label when available."},"location":{"type":"string","nullable":true,"description":"Location label when available."},"pageUrl":{"type":"string","minLength":1,"description":"LinkedIn page URL for the similar organization."}},"required":["name","industries","location","pageUrl"],"description":"A similar organization suggestion."},"description":"Similar organization suggestions when available."},"affiliatedOrganizations":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Similar organization name."},"industries":{"type":"string","nullable":true,"description":"Industry label when available."},"location":{"type":"string","nullable":true,"description":"Location label when available."},"pageUrl":{"type":"string","minLength":1,"description":"LinkedIn page URL for the similar organization."}},"required":["name","industries","location","pageUrl"],"description":"A similar organization suggestion."},"description":"Affiliated organization suggestions when available."},"recentPosts":{"type":"array","items":{"type":"object","properties":{"postUrl":{"type":"string","minLength":1,"description":"Public URL for the post."},"postId":{"type":"string","description":"Post identifier when available."},"text":{"type":"string","nullable":true,"description":"Post text when available."},"title":{"type":"string","nullable":true,"description":"Author or headline label when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publication time in ISO-8601 when available."},"likesCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"commentsCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."},"externalLink":{"type":"string","nullable":true,"description":"External link from the post when available."}},"required":["postUrl","text"],"description":"A recent post from the organization page."},"description":"Recent posts from the organization page when available."},"funding":{"type":"object","nullable":true,"properties":{"rounds":{"type":"integer","nullable":true,"minimum":0,"description":"Reported number of funding rounds when available."},"lastRoundDate":{"type":"string","nullable":true,"description":"Most recent funding round date when available."},"lastRoundType":{"type":"string","nullable":true,"description":"Most recent funding round type when available."},"lastRoundRaised":{"type":"string","nullable":true,"description":"Most recent funding round amount label when available."},"investors":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Investor name."}},"required":["name"],"description":"A funding investor when available."},"description":"Investors when available."}},"required":["investors"],"description":"Funding summary when available."},"stockInfo":{"type":"object","nullable":true,"properties":{"exchange":{"type":"string","nullable":true,"description":"Stock exchange when available."},"ticker":{"type":"string","nullable":true,"description":"Stock ticker when available."},"price":{"type":"string","nullable":true,"description":"Stock price label when available."},"priceChange":{"type":"string","nullable":true,"description":"Stock price change label when available."},"recordedAt":{"type":"string","nullable":true,"description":"Timestamp when stock data was recorded."}},"description":"Stock information when available."},"alumniInsights":{"type":"array","items":{"type":"object","properties":{"header":{"type":"string","nullable":true,"description":"Section header when available."},"label":{"type":"string","minLength":1,"description":"Metric label."},"value":{"type":"string","minLength":1,"description":"Metric value text."}},"required":["label","value"],"description":"Aggregated alumni insight for school pages."},"description":"Alumni insights for school pages when available."},"additionalInformation":{"type":"string","nullable":true,"description":"Additional open-roles or hiring summary text when available."}},"required":["url","lookupStatus","error","organization","metrics","locations","featuredEmployees","similarOrganizations","affiliatedOrganizations","recentPosts","funding","stockInfo","alumniInsights","additionalInformation"],"description":"LinkedIn organization lookup result for one requested URL."},"description":"Per-URL organization lookup results."},"summary":{"type":"object","properties":{"requestedUrls":{"type":"integer","minimum":0,"description":"Number of organization URLs requested in this batch."},"found":{"type":"integer","minimum":0,"description":"Number of organization pages successfully found."},"notFound":{"type":"integer","minimum":0,"description":"Number of organization pages that were not found."},"errored":{"type":"integer","minimum":0,"description":"Number of organization pages that failed to resolve."}},"required":["requestedUrls","found","notFound","errored"],"description":"Summary counts for the organization batch."}},"required":["results","summary"],"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":{"results":[{"url":"https://www.linkedin.com/school/uxdesigninstitute/","lookupStatus":"found","error":null,"organization":{"platform":"linkedin","pageType":"school","id":"3208135","slug":"uxdesigninstitute","name":"UX Design Institute","pageUrl":"https://www.linkedin.com/school/uxdesigninstitute/","about":"About Us At the UX Design Institute, we're dedicated to shaping the future of user experience (UX) design by empowering individuals and organizations with the knowledge and skills needed to create exceptional digital experiences. Our Mission Our mission is simple yet profound: To elevate the standards of UX design worldwide. We believe that every interaction between users and technology should be intuitive, enjoyable, and meaningful. With this conviction, we've set out to provide accessible, world-class UX education.","slogan":"Because the future deserves world-class UX designers.","website":"https://uxdesigninstitute.com/","websiteDomain":"uxdesigninstitute.com","logoUrl":"https://media.licdn.com/dms/image/v2/D4E0BAQG29ECT8Q0vFQ/company-logo_200_200/company-logo_200_200/0/1715851182527/uxdesigninstitute_logo?e=2147483647&v=beta&t=3VzjF-Vtnz0FVY0EGhXP3rRWGviyYA5dy7QGdSjE0aU","coverImageUrl":"https://media.licdn.com/dms/image/v2/D4E3DAQEf0WNSsyaIRw/image-scale_191_1128/image-scale_191_1128/0/1737377885986/uxdesigninstitute_cover?e=2147483647&v=beta&t=DjU493iB-fAGeGeHS3peuuS4DZhArn_RohPBC3LpF6s","industries":"IT Services and IT Consulting","specialties":[],"organizationType":"Privately Held","employeeRange":"11-50 employees","foundedYear":2013,"headquarters":"Dublin, Dublin 2","countryCode":"IE","crunchbaseUrl":null},"metrics":{"followers":99382,"employeesOnLinkedIn":90,"alumni":6023},"locations":[{"label":"5 School House Lane East, Dublin, Dublin 2 D02N279, IE","countryCode":"IE"},{"label":"5 School House Lane East Dublin, Dublin 2 D02N279, IE","countryCode":"IE"}],"featuredEmployees":[{"name":"Anthony Quigley","title":null,"profileUrl":"https://ie.linkedin.com/in/anthonyquigley?trk=org-employees","imageUrl":"https://media.licdn.com/dms/image/v2/C4D03AQFIhekw4dpjQA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1516283454182?e=2147483647&v=beta&t=7Csa_OmYPJ2pmBydGRtGAaXfWjOeXUadCHKew9v_NiA"},{"name":"Colman Walsh","title":null,"profileUrl":"https://ie.linkedin.com/in/colmanw?trk=org-employees","imageUrl":"https://media.licdn.com/dms/image/v2/C4D03AQEQxl5Zg4qPvA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1543359667578?e=2147483647&v=beta&t=NkV4L9hiFMQU46RlrIVVoN1WMHiZIRvZ28N_l3_Cs5Q"},{"name":"Keva Westray","title":null,"profileUrl":"https://www.linkedin.com/in/kevawestray?trk=org-employees","imageUrl":"https://media.licdn.com/dms/image/v2/D4E03AQE4RTeedqU5EA/profile-displayphoto-scale_100_100/B4EZn0cPoEGUAg-/0/1760742670869?e=2147483647&v=beta&t=ZwjCiMypbMaNEJLHuSg1KgVbT6nafWtnph22yvJeTJ8"},{"name":"Serra Kiziltan","title":null,"profileUrl":"https://www.linkedin.com/in/serra-k?trk=org-employees","imageUrl":"https://media.licdn.com/dms/image/v2/D4E03AQEmLgh0qSXyrw/profile-displayphoto-scale_100_100/B4EZufo9vvLIAc-/0/1767909875095?e=2147483647&v=beta&t=-lfJb5PCbMt5BbS7-mMIvFSe7kW7anwRZG9w81uaZOc"}],"similarOrganizations":[{"name":"Mustapha Swinga","industries":"Business Consulting and Services","location":null,"pageUrl":"https://www.linkedin.com/company/mustapha-swinga?trk=similar-pages"},{"name":"Sololearn","industries":"E-Learning Providers","location":"San Francisco, CA","pageUrl":"https://www.linkedin.com/company/sololearn-inc-?trk=similar-pages"},{"name":"ZM Power Solution","industries":"Social Networking Platforms","location":null,"pageUrl":"https://ma.linkedin.com/company/zm-power-solution?trk=similar-pages"},{"name":"Maroc Devenir Evolution","industries":"Professional Training and Coaching","location":null,"pageUrl":"https://ma.linkedin.com/company/m-d-evolution?trk=similar-pages"},{"name":"Spraying Systems MENA","industries":"Industrial Machinery Manufacturing","location":"Dubai Silicon Oasis, Dubai","pageUrl":"https://ae.linkedin.com/company/spraying-systems-middle-east-north-africa?trk=similar-pages"},{"name":"M&T Printing Group Limited","industries":"Printing Services","location":"Kitchener, Ontario","pageUrl":"https://ca.linkedin.com/company/m-&-t-print?trk=similar-pages"},{"name":"Certificate in International Commercial and Investment Arbitration","industries":"Alternative Dispute Resolution","location":"Rome, Rome","pageUrl":"https://it.linkedin.com/company/certificate-in-international-commercial-and-investment-arbitration?trk=similar-pages"},{"name":"Carte.ma","industries":"IT Services and IT Consulting","location":null,"pageUrl":"https://ma.linkedin.com/company/carte-ma?trk=similar-pages"},{"name":"Archwood Group","industries":"Wholesale","location":"Chirk, Wrexham","pageUrl":"https://uk.linkedin.com/company/archwood-ltd?trk=similar-pages"},{"name":"Free Courses With Certificate","industries":"E-Learning Providers","location":"Bossier City, Louisiana","pageUrl":"https://www.linkedin.com/company/freecourseswithcertificate?trk=similar-pages"}],"affiliatedOrganizations":[],"recentPosts":[{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7467103544010203136-U_1P","postId":"7467103544010203136","text":"WCAGsafe (2026) recently highlighted some shocking statistics around digital accessibility, including the thousands of ADA lawsuits filed last year in the US alone. 🚨 It's a clear reminder that the accessibility gap is still growing. Many websites remain non-compliant, while global regulations continue to tighten, not soften. Accessibility is not just a technical consideration. It's a business, legal and user experience priority. The Professional Certificate in Designing for Accessibility covers all 55 WCAG 2.2 Level AA success criteria and shows how to apply them in real-world design scenarios. Learn more via the link in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-06-01T06:43:36.967Z","likesCount":6,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_alaa-essam-began-her-professional-journey-activity-7466062390565163008-1W-s","postId":"7466062390565163008","text":"Alaa Essam began her professional journey in banking and accounting before transitioning into UX. Today, she's a Senior UX Architect at a global organisation, helping shape meaningful digital experiences at scale. 🚀 Whether you're entering UX or aiming for a leadership role, Alaa's story offers valuable insights into building a successful career in the field. Full blog linked in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-29T09:46:26.642Z","likesCount":27,"commentsCount":2,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7465317729277906944-X3c7","postId":"7465317729277906944","text":"Sometimes the biggest sign it's time for a career change is not burnout, it's curiosity. 🔍 You keep looking for more creative work. More meaningful problems to solve. More opportunities to grow. That's exactly why so many people from completely different industries are exploring UX design as their next step. If these signs sound familiar and you'd like to investigate a career in UX design further, book a call with one of our Education Advisors. Link in the comments below 👇","title":"UX Design Institute","publishedAt":"2026-05-27T08:27:25.556Z","likesCount":4,"commentsCount":2,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7464595070596349952-9dZ3","postId":"7464595070596349952","text":"More designers are being asked to confidently work alongside AI tools every day. 🚀 That's why practical AI literacy matters. Not hype, not vague theory, but understanding how AI actually works and where it can genuinely support UX and product work. If you're looking to build practical, hands-on AI skills, explore our AI courses via the link in the comments below.","title":"UX Design Institute","publishedAt":"2026-05-25T08:35:50.300Z","likesCount":8,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7462849616552763393-jXzN","postId":"7462849616552763393","text":"McKinsey & Company continues to highlight the measurable impact strong design teams have on business performance. 🚀 If you're looking to upskill your design team in the full spectrum of UX, product design and AI, explore our training for teams via the link in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-20T13:00:01.627Z","likesCount":7,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7462191904789602304-UWUF","postId":"7462191904789602304","text":"From \"smooth and enriching learning journey\" to \"incredible support\", these testimonials reflect the kind of experience we strive to create for every learner. 🚀 If you'd like to become part of our growing community of 14K+ designers around the world, click the link in the comments below to learn more about our courses!","title":"UX Design Institute","publishedAt":"2026-05-18T17:26:30.923Z","likesCount":1,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7460228561946370049-mB_G","postId":"7460228561946370049","text":"Product design is a rewarding and enjoyable career path. We've seen thousands of graduates move into exciting roles where they love the impact they create across a broad range of industries. 🌏 If you're curious about a career that blends strategy, design and real-world impact, this is worth exploring. Learn more about our Product Design (UX/UI) Programme via the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-13T07:24:53.512Z","likesCount":16,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_ux-in-the-public-sector-is-incredibly-impactful-activity-7459500920129712128-uW07","postId":"7459500920129712128","text":"UX in the public sector is incredibly impactful, just ask Lyndsey. 💥 After upskilling with the Professional Diploma in UX Design, she started creating better experiences for citizens in her local community. By treating citizens as users too, she's making everything from community event planning to park walk-throughs more efficient, thoughtful and intentional. Her story is a great reminder that UX is everywhere, not just in tech companies or digital products. Full story linked in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-11T07:13:30.184Z","likesCount":8,"commentsCount":1,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_a-career-in-ux-does-not-always-start-with-activity-7458048314085793792-Jkpc","postId":"7458048314085793792","text":"A career in UX does not always start with leaving your industry behind. Often, it is about adding a new layer of strategic thinking, problem-solving and user understanding to the work you already do. 🚀 Our latest blog features recent graduates who used UX to evolve their careers in very different ways, from driving product innovation in banking to designing at Apple and improving services within their local communities. Meet them in our latest blog, link in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-07T07:01:21.915Z","likesCount":6,"commentsCount":2,"externalLink":null},{"postUrl":"https://www.linkedin.com/posts/uxdesigninstitute_swipe-right-activity-7457014683816878080-RI-V","postId":"7457014683816878080","text":"A few things stand out to hiring managers in 2026. The ability to work effectively with AI is one of the biggest, says Adobe. For user researchers, that means learning how to integrate AI into research workflows in a responsible, practical and effective way, without losing the human insight that great research depends on. That is exactly what our Certificate in AI for User Research is designed to help with. The next cohort starts on 6 May 2026! Learn more via the link in the comments below. 👇","title":"UX Design Institute","publishedAt":"2026-05-04T10:34:05.255Z","likesCount":5,"commentsCount":1,"externalLink":null}],"funding":null,"stockInfo":null,"alumniInsights":[{"header":"Where they work","label":"Self Employed","value":"0.44%"},{"header":"Where they work","label":"Accenture","value":"0.42%"},{"header":"Where they work","label":"UX Design Institute","value":"0.33%"},{"header":"Where they work","label":"Freelance","value":"0.27%"},{"header":"Where they work","label":"Capgemini","value":"0.25%"},{"header":"What they do","label":"Arts and Design","value":"36.64%"},{"header":"What they do","label":"Business Development","value":"9.15%"},{"header":"What they do","label":"Information Technology","value":"8.67%"},{"header":"What they do","label":"Marketing","value":"6.48%"},{"header":"What they do","label":"Media and Communication","value":"5.06%"},{"header":"What they studied","label":"Design and Visual Communications, General","value":"92.63%"},{"header":"What they studied","label":"Graphic Design","value":"16.47%"},{"header":"What they studied","label":"Marketing","value":"9.23%"},{"header":"What they studied","label":"Industrial and Product Design","value":"8.3%"},{"header":"What they studied","label":"Art/Art Studies, General","value":"6.06%"}],"additionalInformation":null}],"summary":{"requestedUrls":1,"found":1,"notFound":0,"errored":0}},"meta":{"requestId":"req_01example_organization","creditsCharged":2,"version":"v1"}}}}},"400":{"description":"Invalid organization URL 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/companies":{"get":{"tags":["LinkedIn"],"summary":"Get LinkedIn company page","description":"Get a LinkedIn company page.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"This endpoint is for LinkedIn company pages only. If you have a school URL or another organization page type, use the Organization page endpoint instead."},"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":"LinkedIn company page URL for this lookup. School and organization-guest pages are not supported; use `GET /v1/linkedin/organizations`."},"required":true,"description":"LinkedIn company page URL for this lookup. School and organization-guest pages are not supported; use `GET /v1/linkedin/organizations`.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 company page was found."},"company":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["linkedin"],"description":"Social platform for this record."},"id":{"type":"string","minLength":1,"description":"Company identifier as a string."},"handle":{"type":"string","minLength":1,"description":"Company vanity handle when available."},"name":{"type":"string","minLength":1,"description":"Company display name."},"companyUrl":{"type":"string","minLength":1,"description":"Canonical public LinkedIn company page URL."},"description":{"type":"string","nullable":true,"description":"Company description text when available."},"slogan":{"type":"string","nullable":true,"description":"Company tagline when available."},"website":{"type":"string","nullable":true,"description":"Primary external website when available."},"logoUrl":{"type":"string","nullable":true,"description":"Company logo image URL when available."},"coverImageUrl":{"type":"string","nullable":true,"description":"Cover image URL when available."},"industry":{"type":"string","nullable":true,"description":"Industry label when available."},"companyType":{"type":"string","nullable":true,"description":"Company type label when available."},"foundedYear":{"type":"integer","nullable":true,"description":"Founded year when available."},"headquarters":{"type":"string","nullable":true,"description":"Headquarters label when available."},"employeeRange":{"type":"string","nullable":true,"description":"Reported employee range label when available."},"specialties":{"type":"array","items":{"type":"string","minLength":1},"description":"Specialty tags when available."},"location":{"type":"object","nullable":true,"properties":{"city":{"type":"string","nullable":true,"description":"City label when available."},"state":{"type":"string","nullable":true,"description":"State or region label when available."},"country":{"type":"string","nullable":true,"description":"Country code or label when available."}},"required":["city","state","country"],"description":"Structured location when available."}},"required":["platform","id","name","companyUrl","description","website","logoUrl","coverImageUrl","industry","companyType","headquarters","employeeRange","specialties","location"],"description":"Company details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count for the company page."},"employees":{"type":"integer","minimum":0,"description":"Reported employee count for the company."}},"required":["followers","employees"],"description":"Company metrics when available."},"similarCompanies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Similar company display name."},"companyUrl":{"type":"string","minLength":1,"description":"Public LinkedIn company page URL."},"imageUrl":{"type":"string","nullable":true,"description":"Logo image URL when available."}},"required":["name","companyUrl","imageUrl"],"description":"A similar LinkedIn company suggestion."},"description":"Similar company suggestions when available."},"featuredEmployees":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Person name."},"title":{"type":"string","nullable":true,"description":"Title or headline shown on the company page."},"profileUrl":{"type":"string","minLength":1,"description":"LinkedIn profile URL."},"imageUrl":{"type":"string","nullable":true,"description":"Profile image URL when available."}},"required":["name","title","profileUrl","imageUrl"],"description":"A featured employee shown on the company page."},"description":"Featured employees shown on the company page when available."},"recentPosts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Post identifier when available."},"postUrl":{"type":"string","minLength":1,"description":"Public URL for the post."},"publishedAt":{"type":"string","nullable":true,"description":"Publication time in ISO-8601 when available."},"text":{"type":"string","nullable":true,"description":"Post text when available."}},"required":["postUrl"],"description":"A recent post from the company page."},"description":"Recent posts from the company page when available."},"funding":{"type":"object","nullable":true,"properties":{"numberOfRounds":{"type":"integer","nullable":true,"minimum":0,"description":"Reported number of funding rounds when available."},"lastRound":{"type":"object","nullable":true,"properties":{"type":{"type":"string","nullable":true,"description":"Funding round label when available."},"date":{"type":"string","nullable":true,"description":"Round date text or ISO string when available."},"amount":{"type":"string","nullable":true,"description":"Round amount label when available."}},"required":["type","date","amount"],"description":"Most recent funding round when available."},"investors":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Investor name."},"crunchbaseUrl":{"type":"string","nullable":true,"description":"Crunchbase organization URL when available."},"imageUrl":{"type":"string","nullable":true,"description":"Investor logo URL when available."}},"required":["name","crunchbaseUrl","imageUrl"],"description":"A funding investor associated with the company."},"description":"Investors associated with funding history when available."}},"required":["numberOfRounds","lastRound","investors"],"description":"Funding summary when available."}},"required":["lookupStatus","company","metrics","similarCompanies","featuredEmployees","recentPosts","funding"],"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","company":{"platform":"linkedin","id":"784652","handle":"shopify","name":"Shopify","companyUrl":"https://ca.linkedin.com/company/shopify","description":"Shopify is a leading global commerce company, providing trusted tools to start, grow, market, and manage a retail business of any size. Shopify makes commerce better for everyone with a platform and services that are engineered for reliability, while delivering a better shopping experience for consumers everywhere. Shopify powers millions of businesses in more than 175 countries and is trusted by brands such as Allbirds, Gymshark, PepsiCo, Staples, and many more.\n\nFind all our jobs here: www.shopify.com/careers","slogan":"Make commerce better for everyone","website":"https://www.shopify.com","logoUrl":"https://media.licdn.com/dms/image/v2/D560BAQG_KjTcNcrLVw/company-logo_200_200/B56ZZolTV.HUAU-/0/1745511331439/shopify_logo?e=2147483647&v=beta&t=D2saVg58cKnwEiDQgFgzvwL24mTRM_cPuU1ndv6kL2U","coverImageUrl":"https://media.licdn.com/dms/image/v2/D563DAQGruQL8kvBvnw/image-scale_191_1128/B56ZanR4DSGoAs-/0/1746563203576/shopify_cover?e=2147483647&v=beta&t=rHubhVZZZSU_1V8tCeBpwL80OG3bNBjzBNEWFO24qa4","industry":"Software Development","companyType":"Public Company","foundedYear":2006,"headquarters":"Ottawa, ON","employeeRange":"10,001+ employees","specialties":["ecommerce","API","applications","customer service","hardware","marketplace","AR/VR","marketing automation","User Experience","Design","Production Engineering","POS","Payments","Software Engineering","Finance","Retail","Mobile Apps","Instagram","Google Pay","Dropshipping","and Shipping"],"location":{"city":"Ottawa","state":"ON","country":"CA"}},"metrics":{"followers":1083624,"employees":28316},"similarCompanies":[{"name":"Spotify","companyUrl":"https://se.linkedin.com/company/spotify","imageUrl":"https://media.licdn.com/dms/image/v2/C560BAQFkDzx_7dqq3A/company-logo_100_100/company-logo_100_100/0/1631377935713?e=2147483647&v=beta&t=AiRi3YW2R5kYKHbxsjkdQ_d1RuH6Yk98ePBwANPPDhc"},{"name":"Stripe","companyUrl":"https://www.linkedin.com/company/stripe","imageUrl":"https://media.licdn.com/dms/image/v2/D560BAQE2ZfJyfn-VCg/company-logo_100_100/B56ZlyKwpUKIAQ-/0/1758557047806/stripe_logo?e=2147483647&v=beta&t=fRMcaMGPJNFUMq_l1f2zzyX4PaK3yg-MRicyUuY3qSI"},{"name":"Airbnb","companyUrl":"https://www.linkedin.com/company/airbnb","imageUrl":"https://media.licdn.com/dms/image/v2/C560BAQFhfl32crIGIw/company-logo_100_100/company-logo_100_100/0/1630637496980/airbnb_logo?e=2147483647&v=beta&t=idNQqoBZi6dZq6iG78J5GTOsNV_ltJf7ITo7zYZ6VWg"},{"name":"GitLab","companyUrl":"https://www.linkedin.com/company/gitlab-com","imageUrl":"https://media.licdn.com/dms/image/v2/D560BAQEMpW43u_veYQ/company-logo_100_100/company-logo_100_100/0/1707968675381/gitlab_com_logo?e=2147483647&v=beta&t=LeVuLxevWPnMNByO6pDS1vko-s18OjvvwCfGGvTqZoM"},{"name":"Google","companyUrl":"https://www.linkedin.com/company/google","imageUrl":"https://media.licdn.com/dms/image/v2/D4E0BAQGv3cqOuUMY7g/company-logo_100_100/B4EZmhegXHGcAU-/0/1759350753990/google_logo?e=2147483647&v=beta&t=zYekdwB_mnXarr4wa4kw8w3Jikm8YaakM5aiDyAyvP0"},{"name":"Atlassian","companyUrl":"https://au.linkedin.com/company/atlassian","imageUrl":"https://media.licdn.com/dms/image/v2/D4E0BAQGeyLL6crkJKg/company-logo_100_100/company-logo_100_100/0/1735593604612/atlassian_logo?e=2147483647&v=beta&t=4riZdTtd16Oeoew0_mSThLQak3uyYv2-ep73cztBjbo"},{"name":"Amazon","companyUrl":"https://www.linkedin.com/company/amazon","imageUrl":"https://media.licdn.com/dms/image/v2/D560BAQGDLy4STCnHbg/company-logo_100_100/B56ZnZxDipI0AQ-/0/1760295142304/amazon_logo?e=2147483647&v=beta&t=qIUP7OofXIuuuVACb5ToeWH9PHXrPYsS8jsTZ3Q0sUg"},{"name":"Salesforce","companyUrl":"https://www.linkedin.com/company/salesforce","imageUrl":"https://media.licdn.com/dms/image/v2/D560BAQFuQMSI3zgmRw/company-logo_100_100/B56Z3aploQGoAQ-/0/1777489828808/salesforce_logo?e=2147483647&v=beta&t=1MZrzAAgAUVXxVH-02aUbLGyPi8hi7M6_NgqTtjGfmQ"},{"name":"Wealthsimple","companyUrl":"https://ca.linkedin.com/company/wealthsimple","imageUrl":"https://media.licdn.com/dms/image/v2/C4E0BAQGyLFWMyUFwng/company-logo_100_100/company-logo_100_100/0/1630617019864/wealthsimple_logo?e=2147483647&v=beta&t=TTQkdRzro1gml9HQx8nlMhbBGWQMwCYu3G-BDffl-fs"},{"name":"HubSpot","companyUrl":"https://www.linkedin.com/company/hubspot","imageUrl":"https://media.licdn.com/dms/image/v2/C4D0BAQF8H-SLmMDZlA/company-logo_100_100/company-logo_100_100/0/1646683330132/hubspot_logo?e=2147483647&v=beta&t=zOUMsb7QoojA0ShTvsA-3sskbL8v_dZwDLfddJuEMDU"}],"featuredEmployees":[{"name":"Joseph Smarr","title":null,"profileUrl":"https://www.linkedin.com/in/jsmarr","imageUrl":"https://media.licdn.com/dms/image/v2/C5603AQG6JPHHDSVF_g/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1600306045236?e=2147483647&v=beta&t=SYwM63n268TcHjRQFbsz1EXXcGkXxKnYKNqNVUwDjA8"},{"name":"Gail Goodman","title":null,"profileUrl":"https://www.linkedin.com/in/gailgoodman","imageUrl":"https://media.licdn.com/dms/image/v2/C4E03AQFsGcAk5bUoag/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1557919603063?e=2147483647&v=beta&t=evP_CxQ9zBM303u6p79i3-D3lhcEqoiw1TCfdd4oBn4"},{"name":"Todd Muchmore","title":null,"profileUrl":"https://www.linkedin.com/in/toddmuchmore","imageUrl":"https://media.licdn.com/dms/image/v2/D5603AQHzy24GWVgpWQ/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1672455361616?e=2147483647&v=beta&t=rxjMeSkOWQYUTo4BYQiTn8CVlNlfbtuRgHO3zDQaSRg"},{"name":"Jeremy Levine","title":null,"profileUrl":"https://www.linkedin.com/in/jeremyl","imageUrl":"https://media.licdn.com/dms/image/v2/D4E03AQG54XRT_08Otw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1692371205393?e=2147483647&v=beta&t=oZofCvDe9yCzFDp2iMbE2Du-UIZd22t-jtQsgeq2Zd8"}],"recentPosts":[{"id":"7459595190669025280","postUrl":"https://www.linkedin.com/posts/shopify_entrepreneurs-are-turning-obsessions-into-activity-7459595190669025280-TDie","publishedAt":"2026-05-11T13:28:06.015Z","text":"The fastest-growing area of commerce isn't one category. It's thousands of new ones being created by entrepreneurs.\n\nAs the barriers to starting a business collapse, founders are turning specific obsessions into entire markets. Here's what the data shows:\n\n→ Nearly 55% of Shopify sales come from product categories outside the top 100. The mainstream is now the minority.\n\n→ One product is enough to start. Nearly 54% of new Shopify stores in 2025 launched in a specialized category, and 41% started with a single product.\n\n→ AI is a matchmaker for specialized products and the people who want them. 71% of AI-attributed orders in 2025 were for products outside the mainstream.\n\nNiche no longer means limited. The most specific ideas have the most room to grow.\n\nhttps://lnkd.in/e9-Xifty"},{"id":"7457081740642168832","postUrl":"https://www.linkedin.com/posts/shopify_shopify-merchants-you-can-now-manage-your-activity-7457081740642168832-mVcS","publishedAt":"2026-05-04T15:00:32.823Z","text":"Shopify merchants, you can now manage your store inside ChatGPT or Claude.\n\nGet insights, add products, and look up orders, all without leaving the chat.\n\nConnect to ChatGPT → https://lnkd.in/eUsQiENu\nConnect to Claude → https://lnkd.in/eGGcHMZu"},{"id":"7455996656975638528","postUrl":"https://www.linkedin.com/posts/shopify_outdoor-living-was-top-of-mind-for-us-consumers-activity-7455996656975638528-X5TZ","publishedAt":"2026-05-01T15:08:48.719Z","text":"Outdoor living was top of mind for U.S. consumers in April.\n\nWe looked at month-over-month sales from thousands of Shopify merchants to see what was trending. Here’s what stood out:\n\n→ Yard maintenance saw strong growth, with wagons jumping 4,744%. Grass edgers (+697%), sun shades (+254%), plant cages (+242%), and garden hoses (+232%) all saw triple digit increases.\n\n→ Outdoor pet products surged, led by dog houses (+1,910%), dog kennels and runs (+412%), stuffed toys (+163%), and cooling beds (+33%).\n\n→ Pool season officially started, with rash guards and swim shirts (+671%), pool maintenance kits (+163%), and water slides (+112%) all in demand.\n\n→ Golf season teed off too. Club shafts are up 197%, followed by club parts and accessories (+86%), putting mats (+60%), gloves (+37%), and swing trainers (+24%).\n\nIf April is any indication, summer demand is already building."},{"id":"7452738252756746240","postUrl":"https://www.linkedin.com/posts/shopify_business-owners-are-finding-financial-control-activity-7452738252756746240-jtqk","publishedAt":"2026-04-22T15:21:04.619Z","text":"Business owners are finding financial control in something a 9-5 can't give them: ownership.\n\nWe partnered with The Harris Poll to survey business owners across the U.S., Canada, the U.K., Australia, and Spain. One finding stood out: founders aren't just optimistic about the choice they made, they feel in control of it.\n\n→ In every market surveyed, business owners were more likely to say entrepreneurship feels more financially secure than a traditional job. In the U.S., the margin was roughly 2 to 1 (39% vs. 18%).\n\n→ In 4 of 5 markets, respondents said a traditional job requires more effort than running a business. In the U.S., nearly twice as many said so (46% vs. 24%).\n\n→ Across all 5 markets, 61 to 69% of founders said starting a business felt like moving toward something they wanted, not away from something unstable.\n\n→ In the U.S., 86% of entrepreneurs say ecommerce platforms have made it easier to start a business than a decade ago, and 67% say AI tools are making entrepreneurship more accessible.\n\nMost founders would make the same choice again. Not because it's easy. Because it's theirs.\n\nhttps://lnkd.in/ecPPkMtN"},{"id":"7450172848884711424","postUrl":"https://www.linkedin.com/posts/shopify_the-most-future-proof-job-entrepreneurship-activity-7450172848884711424-a2X5","publishedAt":"2026-04-15T13:27:04.667Z","text":"More people are choosing to build, and the data says they're right to.\n\nWith millions of businesses running on Shopify, we have one of the most comprehensive real-time datasets on entrepreneurship. It all points to one thing: entrepreneurship is accelerating.\n\n→ More people are starting businesses: 7x more people made their first sale on Shopify in 2025 than in 2018.\n\n→ Repeat entrepreneurs scale faster: Merchants who have previously launched a business on Shopify and return to build a second earn more than 2x the sales per shop.\n\n→ Entrepreneurs continue to earn more: Merchants who started between 2017 and 2020 grew revenue 25% over three years.\n\nThe story is clear. As the traditional 9-to-5 path is contracting, entrepreneurship is expanding.\n\nIn the age of AI, entrepreneurship may be the more resilient path.\n\nhttps://lnkd.in/eDf4Auv9"},{"id":"7448102542032568320","postUrl":"https://www.linkedin.com/posts/shopify_the-shopify-ai-toolkit-is-here-manage-activity-7448102542032568320-Bgis","publishedAt":"2026-04-09T20:20:25.045Z","text":"The Shopify AI Toolkit is here.\n\nManage your store with agents like Claude Code, Codex, Cursor, and VS Code.\n\nTry it out → https://lnkd.in/eRFpZ_AH"},{"id":"7447302113459654659","postUrl":"https://www.linkedin.com/posts/shopify_tickets-are-live-for-dotdev-2026-get-ready-activity-7447302113459654659-p2Sz","publishedAt":"2026-04-07T15:19:48.013Z","text":"Tickets are live for DotDev 2026.\n\nGet ready for two full days of product demos, deep dives, and connecting with other builders.\n\nSee you in Toronto → https://lnkd.in/eSCeJyPK"},{"id":"7446919743191769088","postUrl":"https://www.linkedin.com/posts/shopify_shopify-b2b-is-now-available-on-more-plans-activity-7446919743191769088-XoKe","publishedAt":"2026-04-06T14:00:23.826Z","text":"Shopify B2B is now available on more plans.\n\nAll plans now have access to our key B2B features directly in the admin.\n\nThe highlights: company profiles, vaulted credit cards, ACH payments, and up to three custom catalogs.\n\nhttps://lnkd.in/gFEPMadg"},{"id":"7445825000554565632","postUrl":"https://www.linkedin.com/posts/shopify_from-biking-and-golf-gear-to-outdoor-furniture-activity-7445825000554565632-tp6T","publishedAt":"2026-04-03T13:30:16.844Z","text":"From biking and golf gear to outdoor furniture, warm weather shaped what US consumers bought in March.\n\nWe analyzed month-over-month sales from thousands of Shopify merchants to see what was trending. A few highlights:\n\n→ Lawn and garden season kicked off in a big way. Outdoor misting systems (+302%), sprinklers (+273%), rain barrels (+262%), and weed trimmers (+222%) all saw triple-digit growth.\n\n→ Backyards got an upgrade, with sunshades (+156%), gazebos (+146%), swing chairs (+130%), and outdoor sofas (+113%) all up. Backyard games, like paddle ball (+92%) and cornhole sets (+46%), were in demand too.\n\n→ Families geared up for bike season. Child bike seats surged 151%, followed by training wheels (+111%), hybrid bikes (+104%), bicycle baskets (+90%), and helmets (+66%).\n\n→ Golf season is back. As courses reopen, sales rose for golf club sets (+75%), tees (+51%), and bags (+48%).\n\nEntrepreneurs, what trends are you tracking this spring?"}],"funding":{"numberOfRounds":4,"lastRound":{"type":"Series C","date":"2014-01-11T00:00:00.000Z","amount":"US$ 100.0M"},"investors":[{"name":"OMERS Ventures","crunchbaseUrl":"https://www.crunchbase.com/organization/omers-ventures","imageUrl":"https://media.licdn.com/dms/image/sync/v2/D4E38AQEnDf6SgPOjAQ/crunchbase_investor_logo_100/crunchbase_investor_logo_100/0/1749357005588?e=1779609600&v=beta&t=ICa6LnndKco259rq6Nrd6AiGQT0_pYPivs2V1vySj6w"},{"name":"Insight Partners","crunchbaseUrl":"https://www.crunchbase.com/organization/insight-partners","imageUrl":"https://media.licdn.com/dms/image/sync/v2/D4E38AQGXqgk0y9uCmA/crunchbase_investor_logo_100/B4EZnE9jBWIkAM-/0/1759946093131?e=1779609600&v=beta&t=PhuJf5KW4FZ2dUU7VppKDAblB-dOVyvYY9cxKbHBPUw"}]}},"meta":{"requestId":"req_b5d28411-ae8c-4ce8-9b7c-d5a3d67def18","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","company":null,"metrics":null,"similarCompanies":[],"featuredEmployees":[],"recentPosts":[],"funding":null},"meta":{"requestId":"req_01example_nf","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid company URL 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/linkedin/posts":{"get":{"tags":["LinkedIn"],"summary":"Get LinkedIn post or article","description":"Get a LinkedIn post or article.","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 post or article."},"required":true,"description":"Public permalink to the post or article.","name":"url","in":"query"}],"responses":{"200":{"description":"Post or article 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":{"contentType":{"type":"string","enum":["post","article"],"description":"Whether this URL resolved to a feed-style post or an article."},"url":{"type":"string","minLength":1,"description":"Canonical or resolved public URL for this item."},"title":{"type":"string","nullable":true,"description":"Title for long-form articles when available."},"headline":{"type":"string","nullable":true,"description":"Subtitle or lead line when available."},"description":{"type":"string","nullable":true,"description":"Full body text when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publication timestamp or date string when available."}},"required":["contentType","url","title","headline","description","publishedAt"],"description":"Primary item when found."},"author":{"type":"object","nullable":true,"properties":{"name":{"type":"string","minLength":1,"description":"Display name of the author."},"profileUrl":{"type":"string","nullable":true,"format":"uri","description":"Public profile URL for the author when available."},"avatarUrl":{"type":"string","nullable":true,"format":"uri","description":"Avatar image URL when available."},"followers":{"type":"integer","nullable":true,"minimum":0,"description":"Follower count when available."}},"required":["name","profileUrl","avatarUrl","followers"],"description":"Author when found."},"metrics":{"type":"object","nullable":true,"properties":{"reactions":{"type":"integer","nullable":true,"minimum":0,"description":"Total reactions when available."},"comments":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."}},"required":["reactions","comments"],"description":"Engagement metrics for the post or article."},"comments":{"type":"array","items":{"type":"object","properties":{"authorName":{"type":"string","nullable":true,"description":"Display name of the commenter."},"text":{"type":"string","nullable":true,"description":"Comment body text."},"profileUrl":{"type":"string","nullable":true,"format":"uri","description":"Public profile URL for the commenter when available."}},"required":["authorName","text","profileUrl"],"description":"A single top-level comment."},"description":"Top-level comments when available."},"relatedArticles":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","format":"uri","description":"Permalink to the related item."},"title":{"type":"string","nullable":true,"description":"Title when available."},"publishedAtLabel":{"type":"string","nullable":true,"description":"Human-readable publication label when only a label is available."},"description":{"type":"string","nullable":true,"description":"Short summary text when available."},"reactions":{"type":"integer","nullable":true,"minimum":0,"description":"Reaction count when available."},"comments":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."}},"required":["url","title","publishedAtLabel","description","reactions","comments"],"description":"A related article from the same author."},"description":"Related items from the same author when available."}},"required":["lookupStatus","post","author","metrics","comments","relatedArticles"],"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_post":{"value":{"data":{"lookupStatus":"not_found","post":null,"author":null,"metrics":null,"comments":[],"relatedArticles":[]},"meta":{"requestId":"req_e4d7e6a8-bff7-4302-b135-76594f9cc1d1","creditsCharged":1,"version":"v1"}}},"found_article":{"value":{"data":{"lookupStatus":"found","post":{"contentType":"article","url":"https://www.linkedin.com/pulse/example-article-slug","title":"Student Assessment in an A.I. era: My way of thinking","headline":"I was in an on-line meeting with few colleagues the other day.","description":"Example article body excerpt.","publishedAt":"2026-03-29T07:37:07.000+00:00"},"author":{"name":"Professor Nik Bessis","profileUrl":"https://www.linkedin.com/in/nikbessis","avatarUrl":null,"followers":5300},"metrics":{"reactions":26,"comments":5},"comments":[{"authorName":"Example Reader","text":"Insightful thoughts.","profileUrl":"https://www.linkedin.com/in/example-reader"}],"relatedArticles":[{"url":"https://www.linkedin.com/pulse/related-example","title":"Related article title","publishedAtLabel":"Dec 1, 2020","description":"Short teaser text.","reactions":23,"comments":15}]},"meta":{"requestId":"req_01example_article","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"author":null,"metrics":null,"comments":[],"relatedArticles":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/subreddits":{"get":{"tags":["Reddit"],"summary":"Get Reddit subreddit","description":"Get details for a Reddit community.","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":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing."},"required":false,"description":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing.","name":"subreddit","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Optional subreddit URL for the request."},"required":false,"description":"Optional subreddit URL for the request.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 subreddit was found."},"subreddit":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["reddit"],"description":"Social platform for this subreddit."},"name":{"type":"string","description":"Public subreddit name."},"subredditId":{"type":"string","description":"Stable subreddit identifier when available."},"url":{"type":"string","minLength":1,"description":"Canonical public subreddit URL."},"description":{"type":"string","nullable":true,"description":"Subreddit description text when available."},"rules":{"type":"string","nullable":true,"description":"Subreddit rules text when available."},"iconUrl":{"type":"string","nullable":true,"description":"Subreddit icon image URL when available."},"bannerUrl":{"type":"string","nullable":true,"description":"Subreddit banner image URL when available."},"advertiserCategory":{"type":"string","nullable":true,"description":"Advertiser category label when available."},"submitText":{"type":"string","nullable":true,"description":"Submission guidance text shown to members when available."},"createdAt":{"type":"string","nullable":true,"description":"Subreddit creation timestamp when available."}},"required":["platform","name","url","description","rules","iconUrl","bannerUrl","createdAt"],"description":"Subreddit details when available."},"metrics":{"type":"object","nullable":true,"properties":{"subscribers":{"type":"integer","nullable":true,"minimum":0,"description":"Subscriber count when available."},"weeklyActiveUsers":{"type":"integer","nullable":true,"minimum":0,"description":"Approximate weekly active users when available."},"weeklyContributions":{"type":"integer","nullable":true,"minimum":0,"description":"Approximate weekly contributions when available."}},"required":["subscribers","weeklyActiveUsers","weeklyContributions"],"description":"Subreddit metrics when available."}},"required":["lookupStatus","subreddit","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","subreddit":{"platform":"reddit","name":"AbsoluteUnits","subredditId":"t5_a7wuv","url":"https://www.reddit.com/r/AbsoluteUnits/","description":"Absolute Unit : an Animal or Public Figure, who is larger than we should normally expect.","rules":"#ABSOLUTE UNITS\n\n---\n\n    Be in awe at the size of these lads\n\n---\n\n###[Check out our deep, well-reflected definitions of an absolute unit.](https://www.reddit.com/r/AbsoluteUnits/wiki/index)  \n\n---\n\n#RULES:\n\n###Posting\n\n\n####1) Post Absolute Units only.\n\n -  **Only Absolute Units are allowed**. **No normal units**.  \n\n [See definition here](https://www.reddit.com/r/AbsoluteUnits/wiki/definition).\n\n -  **Post absolute units, not actual units**\n\n Absolute units only.  Not measuring units.   It was punny the first time, now it's old. Straight out bans will be handed. \n\n\n - **No Photoshopped Units**\n\n Only real absolute units are allowed. No AI, art, cartoon, edited or video game units.\n \n#### 2) Post public figures only\n\n- **No creepshots / No fat shaming pics allowed / No female bodybuilders**\n\n We're looking for animals mostly, particularly cute animals which happen to be very large. Only public figures are allowed; no harassment, creep-shots, witch-hunts, fat-shaming is allowed. Female bodybuilders are expressly forbidden and anyone making transphobic comments will be permanently banned. **Identify the public figure in the title. Don't assume they are well known**\n\n\n#### 3) No NSFW posts\n\n- **No NSFW and NSFL content** \n\n This includes content that is sexual in nature, gory, anything unpalatable to the eyes.  \n\n- **Don't post pictures of private parts**\n\n Honestly, nobody comes here to see magnum dongs. Just don't.\n\n- **Don't post pictures of shit**\n\n No one wants to see that.  No dung, no dong. Dings are allowed.     \n\n#### 4) No Recent or Common reposts\n\n  - Frequent reposts or those from last 60 days or top 50 posts of all time will be removed.\n\n  - Moderators reserve the right to remove any posts they feel will improve the quality of this sub\n\n\n\n\n###Commenting\n\n####5) Be nice.  \n\n - **There's no reason to be an unfriendly unit**.\n\n -  **Excessively derogatory comments are not allowed**.\n\n - **Toxic behavior of any kind is banned**.\n\n - **Follow the site-wide rules / general [Rediquette](https://reddit.zendesk.com/hc/en-us/articles/205926439-Reddiquette)**\n\n####6) No doxing or brigading \n\n - **No witch hunts**.\n\n - **Do not direct link any personal information or social media profiles**.\n\n - **No brigading to or from any other threads, whether on or off Reddit**.     \n\n#### 7) Shut up about pitbulls \n\n - **No pitbull hate comments, stats, copypasta, links or calls to ban.**\n\n This is a place to enjoy Absolute Units.  Not to discuss your hate for any specific breeds, spamming stats and starting flame wars about whether or not they are dangerous.  If you love pitbulls, please visit r/pitbulls.  If you hate them, please visit r/banpitbulls.   \n\n Now please kindly shut up about it, or risk being banned. \n\n#### 8) Post titles must start with the string \"of \".\n\nPlease note that the word \"of\" is **case sensitive**.\n\n\n\n\n#### Don't be the guy that makes us add more rules\n - \n\n The moderators of this subreddit will take any action (which includes banning and removing comments) that they feel improves the quality of the subreddit.  \n\n---\n\n#OUR FRIENDS:\n\n\n-  **/r/Adoptableunits**\n\n\n-  **/r/Chonkers**\n\n\n-  **/r/PeepingPooch**\n\n\n-  **/r/TinyUnits**\n\n---\n\n#HEALTH:\n\nWe are in awe at the size of Absolute Units, and the only thing we love more is a fine lad who used to be an Absolute Unit and has become healthy! \n\n- [The American Veterinary Medical Association](https://www.avma.org/public/PetCare/Pages/yourpetshealthyweight.aspx) (AVMA) says \"Even a modest reduction in weight can significantly reduce your pet’s risk of life-threatening diseases.\" \n\n- [Pet Weight Calculator](https://www.petmd.com/healthyweight)","iconUrl":"https://styles.redditmedia.com/t5_a7wuv/styles/communityIcon_t3cspt08bl681.png?width=256&s=a44312a0b6611844daea17277b70bcbdc23961ae","bannerUrl":"https://styles.redditmedia.com/t5_a7wuv/styles/bannerBackgroundImage_6dyzaasgzdag1.png?width=4000&s=13383688b7c6aada983cf92990591f1d5c9bcc67","advertiserCategory":"","submitText":"","createdAt":"2018-01-05T10:35:24.000Z"},"metrics":{"subscribers":2039745,"weeklyActiveUsers":2374665,"weeklyContributions":19793}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","subreddit":null,"metrics":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/subreddits/{subreddit}/posts":{"get":{"tags":["Reddit"],"summary":"List Reddit subreddit posts","description":"Get posts from a specific subreddit.","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":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Lists posts for this subreddit."},"required":true,"description":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Lists posts for this subreddit.","name":"subreddit","in":"path"},{"schema":{"type":"string","enum":["best","hot","new","top","rising"],"description":"Optional sort order for the returned posts."},"required":false,"description":"Optional sort order for the returned posts.","name":"sort","in":"query"},{"schema":{"type":"string","enum":["all","day","week","month","year"],"description":"Optional timeframe used with time-based sort orders."},"required":false,"description":"Optional timeframe used with time-based sort orders.","name":"timeframe","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":"Subreddit 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 subreddit resolved for this request."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable identifier for the post."},"fullId":{"type":"string","nullable":true,"description":"Full post identifier when available."},"subreddit":{"type":"string","nullable":true,"description":"Subreddit name for this post when available."},"title":{"type":"string","minLength":1,"description":"Post title."},"text":{"type":"string","nullable":true,"description":"Text body of the post when available."},"author":{"type":"object","properties":{"username":{"type":"string","nullable":true,"description":"Post author username when available."},"id":{"type":"string","nullable":true,"description":"Stable author identifier when available."}},"required":["username","id"],"description":"Post author."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this post when available."},"permalinkUrl":{"type":"string","nullable":true,"description":"Permalink URL for this post when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp for when the post was published."},"metrics":{"type":"object","properties":{"score":{"type":"integer","nullable":true,"minimum":0,"description":"Post score when available."},"upvotes":{"type":"integer","nullable":true,"minimum":0,"description":"Upvote count when available."},"upvoteRatio":{"type":"number","nullable":true,"minimum":0,"description":"Upvote ratio when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."},"crosspostCount":{"type":"integer","nullable":true,"minimum":0,"description":"Crosspost count when available."},"subredditSubscribers":{"type":"integer","nullable":true,"minimum":0,"description":"Subreddit subscriber count when available."}},"required":["score","upvotes","upvoteRatio","commentCount","crosspostCount","subredditSubscribers"],"description":"Post metrics."},"flags":{"type":"object","properties":{"isVideo":{"type":"boolean","description":"Whether the post is a video."},"isPinned":{"type":"boolean","description":"Whether the post is pinned."},"isLocked":{"type":"boolean","description":"Whether the post is locked."},"isSpoiler":{"type":"boolean","description":"Whether the post is marked as a spoiler."},"isOver18":{"type":"boolean","description":"Whether the post is marked as adult content."},"isOriginalContent":{"type":"boolean","description":"Whether the post is marked as original content."}},"required":["isVideo","isPinned","isLocked","isSpoiler","isOver18","isOriginalContent"],"description":"Post content flags."}},"required":["id","fullId","subreddit","title","text","author","url","permalinkUrl","publishedAt","metrics","flags"],"description":"A single post from a subreddit feed."},"description":"Posts returned for the requested subreddit. This array may be empty when the subreddit 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":"1th2qnn","fullId":"t3_1th2qnn","subreddit":"AskReddit","title":"How often do truckers look into cars that are passing them ?","text":"","author":{"username":"canadianWarthog","id":"t2_2cqqd9z7fi"},"url":"https://www.reddit.com/r/AskReddit/comments/1th2qnn/how_often_do_truckers_look_into_cars_that_are/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th2qnn/how_often_do_truckers_look_into_cars_that_are/","publishedAt":"2026-05-18T21:57:10.000Z","metrics":{"score":3002,"upvotes":3002,"upvoteRatio":0.94,"commentCount":764,"crosspostCount":1,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":true,"isOriginalContent":false}},{"id":"1thdg5s","fullId":"t3_1thdg5s","subreddit":"AskReddit","title":"How is it possible 21% of usa is illiterate? How do they survive?","text":"","author":{"username":"GossipBottom","id":"t2_1yho1wtc6t"},"url":"https://www.reddit.com/r/AskReddit/comments/1thdg5s/how_is_it_possible_21_of_usa_is_illiterate_how_do/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thdg5s/how_is_it_possible_21_of_usa_is_illiterate_how_do/","publishedAt":"2026-05-19T05:36:55.000Z","metrics":{"score":721,"upvotes":721,"upvoteRatio":0.92,"commentCount":362,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgsbgn","fullId":"t3_1tgsbgn","subreddit":"AskReddit","title":"What is something you’ve officially stopped buying in 2026 because the price has become genuinely insulting?","text":"","author":{"username":"queenmellyy","id":"t2_1zs61562wj"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgsbgn/what_is_something_youve_officially_stopped_buying/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgsbgn/what_is_something_youve_officially_stopped_buying/","publishedAt":"2026-05-18T16:45:19.000Z","metrics":{"score":6360,"upvotes":6360,"upvoteRatio":0.94,"commentCount":8343,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgwnd8","fullId":"t3_1tgwnd8","subreddit":"AskReddit","title":"Who is a celebrity that is very attractive but seems like they have zero charisma?","text":"","author":{"username":"downtowndabble","id":"t2_2caeoz9xxm"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgwnd8/who_is_a_celebrity_that_is_very_attractive_but/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgwnd8/who_is_a_celebrity_that_is_very_attractive_but/","publishedAt":"2026-05-18T18:43:30.000Z","metrics":{"score":3072,"upvotes":3072,"upvoteRatio":0.89,"commentCount":2927,"crosspostCount":1,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th3zvo","fullId":"t3_1th3zvo","subreddit":"AskReddit","title":"Whats the best dating advice you can give an 18yo?","text":"","author":{"username":"NoWest240","id":"t2_1iidyzjtdu"},"url":"https://www.reddit.com/r/AskReddit/comments/1th3zvo/whats_the_best_dating_advice_you_can_give_an_18yo/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th3zvo/whats_the_best_dating_advice_you_can_give_an_18yo/","publishedAt":"2026-05-18T22:41:10.000Z","metrics":{"score":1136,"upvotes":1136,"upvoteRatio":0.93,"commentCount":875,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":true,"isOriginalContent":false}},{"id":"1tgot2r","fullId":"t3_1tgot2r","subreddit":"AskReddit","title":"Which punishment (either real or fictional) sounds easy enough to endure at first, but is actually hellish to experience?","text":"","author":{"username":"dizzyd232","id":"t2_snhn3oys"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgot2r/which_punishment_either_real_or_fictional_sounds/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgot2r/which_punishment_either_real_or_fictional_sounds/","publishedAt":"2026-05-18T14:45:20.000Z","metrics":{"score":5089,"upvotes":5089,"upvoteRatio":0.95,"commentCount":2472,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th7xde","fullId":"t3_1th7xde","subreddit":"AskReddit","title":"What’s a moment where you instantly realized someone was insanely intelligent?","text":"","author":{"username":"Parqcxsm69","id":"t2_na36cdxj"},"url":"https://www.reddit.com/r/AskReddit/comments/1th7xde/whats_a_moment_where_you_instantly_realized/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th7xde/whats_a_moment_where_you_instantly_realized/","publishedAt":"2026-05-19T01:23:32.000Z","metrics":{"score":609,"upvotes":609,"upvoteRatio":0.91,"commentCount":447,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thcj6j","fullId":"t3_1thcj6j","subreddit":"AskReddit","title":"What are the \"low-key\" signs that you're more attractive than you think?","text":"","author":{"username":"AfterBear6551","id":"t2_2cbaib6php"},"url":"https://www.reddit.com/r/AskReddit/comments/1thcj6j/what_are_the_lowkey_signs_that_youre_more/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thcj6j/what_are_the_lowkey_signs_that_youre_more/","publishedAt":"2026-05-19T04:51:03.000Z","metrics":{"score":319,"upvotes":319,"upvoteRatio":0.86,"commentCount":252,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th2gt3","fullId":"t3_1th2gt3","subreddit":"AskReddit","title":"What is a \"corporate red flag\" that employers try to pass off as a great benefit?","text":"","author":{"username":"spectrecult","id":"t2_1dxo28sst6"},"url":"https://www.reddit.com/r/AskReddit/comments/1th2gt3/what_is_a_corporate_red_flag_that_employers_try/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th2gt3/what_is_a_corporate_red_flag_that_employers_try/","publishedAt":"2026-05-18T21:47:49.000Z","metrics":{"score":988,"upvotes":988,"upvoteRatio":0.95,"commentCount":562,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgmffy","fullId":"t3_1tgmffy","subreddit":"AskReddit","title":"What is the worst career to be in right now and why?","text":"","author":{"username":"parmint123","id":"t2_2nld9i9r"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgmffy/what_is_the_worst_career_to_be_in_right_now_and/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgmffy/what_is_the_worst_career_to_be_in_right_now_and/","publishedAt":"2026-05-18T13:19:27.000Z","metrics":{"score":2564,"upvotes":2564,"upvoteRatio":0.93,"commentCount":1837,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tha8sf","fullId":"t3_1tha8sf","subreddit":"AskReddit","title":"What’s the most terrifying thing that happened to you that nobody believes?","text":"","author":{"username":"Sad-Conflict6839","id":"t2_2ebnq29c1e"},"url":"https://www.reddit.com/r/AskReddit/comments/1tha8sf/whats_the_most_terrifying_thing_that_happened_to/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tha8sf/whats_the_most_terrifying_thing_that_happened_to/","publishedAt":"2026-05-19T03:03:42.000Z","metrics":{"score":194,"upvotes":194,"upvoteRatio":0.96,"commentCount":364,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgtgjw","fullId":"t3_1tgtgjw","subreddit":"AskReddit","title":"What was your \"I was gone for five minutes!\" Story?","text":"","author":{"username":"LawfulnessHaunting41","id":"t2_e4ya94ps"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgtgjw/what_was_your_i_was_gone_for_five_minutes_story/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgtgjw/what_was_your_i_was_gone_for_five_minutes_story/","publishedAt":"2026-05-18T17:22:40.000Z","metrics":{"score":1071,"upvotes":1071,"upvoteRatio":0.96,"commentCount":731,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tglq2f","fullId":"t3_1tglq2f","subreddit":"AskReddit","title":"What video game soundtrack is a 10/10?","text":"","author":{"username":"montymaximus","id":"t2_3ui5w4z7"},"url":"https://www.reddit.com/r/AskReddit/comments/1tglq2f/what_video_game_soundtrack_is_a_1010/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tglq2f/what_video_game_soundtrack_is_a_1010/","publishedAt":"2026-05-18T12:52:31.000Z","metrics":{"score":1844,"upvotes":1844,"upvoteRatio":0.92,"commentCount":6215,"crosspostCount":2,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thctyz","fullId":"t3_1thctyz","subreddit":"AskReddit","title":"What is the weirdest thing you’ve seen at a wedding?","text":"","author":{"username":"No-Picture4316","id":"t2_2cbbhwhl6r"},"url":"https://www.reddit.com/r/AskReddit/comments/1thctyz/what_is_the_weirdest_thing_youve_seen_at_a_wedding/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thctyz/what_is_the_weirdest_thing_youve_seen_at_a_wedding/","publishedAt":"2026-05-19T05:05:51.000Z","metrics":{"score":86,"upvotes":86,"upvoteRatio":0.91,"commentCount":191,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th1e4a","fullId":"t3_1th1e4a","subreddit":"AskReddit","title":"What's a 10/10 movie according to you?","text":"","author":{"username":"Avatater","id":"t2_2enk97hg5x"},"url":"https://www.reddit.com/r/AskReddit/comments/1th1e4a/whats_a_1010_movie_according_to_you/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th1e4a/whats_a_1010_movie_according_to_you/","publishedAt":"2026-05-18T21:10:23.000Z","metrics":{"score":356,"upvotes":356,"upvoteRatio":0.85,"commentCount":1673,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th9m6t","fullId":"t3_1th9m6t","subreddit":"AskReddit","title":"What’s a fast food restaurant you won’t eat anymore?","text":"","author":{"username":"GarbageDramatic9005","id":"t2_14d4s9k0gg"},"url":"https://www.reddit.com/r/AskReddit/comments/1th9m6t/whats_a_fast_food_restaurant_you_wont_eat_anymore/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th9m6t/whats_a_fast_food_restaurant_you_wont_eat_anymore/","publishedAt":"2026-05-19T02:36:13.000Z","metrics":{"score":106,"upvotes":106,"upvoteRatio":0.84,"commentCount":533,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgpvdk","fullId":"t3_1tgpvdk","subreddit":"AskReddit","title":"What is something that died out so quietly that nobody even noticed?","text":"","author":{"username":"Alva_509","id":"t2_2eih002f4m"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgpvdk/what_is_something_that_died_out_so_quietly_that/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgpvdk/what_is_something_that_died_out_so_quietly_that/","publishedAt":"2026-05-18T15:22:04.000Z","metrics":{"score":813,"upvotes":813,"upvoteRatio":0.94,"commentCount":1088,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgm4tn","fullId":"t3_1tgm4tn","subreddit":"AskReddit","title":"Which US state gets glorified in movies but doesn’t live up to it IRL?","text":"","author":{"username":"Auelogic","id":"t2_bpwjfd"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgm4tn/which_us_state_gets_glorified_in_movies_but/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgm4tn/which_us_state_gets_glorified_in_movies_but/","publishedAt":"2026-05-18T13:08:18.000Z","metrics":{"score":1130,"upvotes":1130,"upvoteRatio":0.88,"commentCount":2165,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgbdwi","fullId":"t3_1tgbdwi","subreddit":"AskReddit","title":"What hobby attracts the worst type of people?","text":"","author":{"username":"Gr8Deb8ter","id":"t2_6cvsfy7x"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgbdwi/what_hobby_attracts_the_worst_type_of_people/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgbdwi/what_hobby_attracts_the_worst_type_of_people/","publishedAt":"2026-05-18T04:04:59.000Z","metrics":{"score":6571,"upvotes":6571,"upvoteRatio":0.95,"commentCount":5006,"crosspostCount":2,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th2n8j","fullId":"t3_1th2n8j","subreddit":"AskReddit","title":"What's the most annoying thing about being a woman?","text":"","author":{"username":"Used_Leek_4485","id":"t2_jeqil929"},"url":"https://www.reddit.com/r/AskReddit/comments/1th2n8j/whats_the_most_annoying_thing_about_being_a_woman/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th2n8j/whats_the_most_annoying_thing_about_being_a_woman/","publishedAt":"2026-05-18T21:53:58.000Z","metrics":{"score":203,"upvotes":203,"upvoteRatio":0.83,"commentCount":1020,"crosspostCount":1,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th6qby","fullId":"t3_1th6qby","subreddit":"AskReddit","title":"Whats your biggest turn off in a guy/girl?","text":"","author":{"username":"Sea_Science2735","id":"t2_1nc3ytum6t"},"url":"https://www.reddit.com/r/AskReddit/comments/1th6qby/whats_your_biggest_turn_off_in_a_guygirl/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th6qby/whats_your_biggest_turn_off_in_a_guygirl/","publishedAt":"2026-05-19T00:32:14.000Z","metrics":{"score":112,"upvotes":112,"upvoteRatio":0.83,"commentCount":483,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgvkw1","fullId":"t3_1tgvkw1","subreddit":"AskReddit","title":"What's a lie told so much people believe it as the truth and wouldn't recognize the truth?","text":"","author":{"username":"kvosovich","id":"t2_1hhf9ao6sp"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgvkw1/whats_a_lie_told_so_much_people_believe_it_as_the/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgvkw1/whats_a_lie_told_so_much_people_believe_it_as_the/","publishedAt":"2026-05-18T18:13:11.000Z","metrics":{"score":368,"upvotes":368,"upvoteRatio":0.89,"commentCount":1128,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th8hq7","fullId":"t3_1th8hq7","subreddit":"AskReddit","title":"If you could make ONE specific food free for life (unlimited quantities), what are you choosing and why?","text":"","author":{"username":"NeighborhoodFar6008","id":"t2_1lakl2qsjs"},"url":"https://www.reddit.com/r/AskReddit/comments/1th8hq7/if_you_could_make_one_specific_food_free_for_life/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th8hq7/if_you_could_make_one_specific_food_free_for_life/","publishedAt":"2026-05-19T01:47:51.000Z","metrics":{"score":80,"upvotes":80,"upvoteRatio":0.87,"commentCount":219,"crosspostCount":0,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tg56u8","fullId":"t3_1tg56u8","subreddit":"AskReddit","title":"Who destroyed their own career within seconds by being an idiot?","text":"","author":{"username":"goldbeau","id":"t2_2dwkdlsms4"},"url":"https://www.reddit.com/r/AskReddit/comments/1tg56u8/who_destroyed_their_own_career_within_seconds_by/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tg56u8/who_destroyed_their_own_career_within_seconds_by/","publishedAt":"2026-05-17T23:21:33.000Z","metrics":{"score":14342,"upvotes":14342,"upvoteRatio":0.95,"commentCount":8198,"crosspostCount":2,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tg6dpl","fullId":"t3_1tg6dpl","subreddit":"AskReddit","title":"Women of Reddit, what did a man you were dating or married to say or do that made you realize he actually hated you the entire time?","text":"","author":{"username":"-catharina","id":"t2_1pv4mudlob"},"url":"https://www.reddit.com/r/AskReddit/comments/1tg6dpl/women_of_reddit_what_did_a_man_you_were_dating_or/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tg6dpl/women_of_reddit_what_did_a_man_you_were_dating_or/","publishedAt":"2026-05-18T00:13:39.000Z","metrics":{"score":8146,"upvotes":8146,"upvoteRatio":0.88,"commentCount":6085,"crosspostCount":4,"subredditSubscribers":58582088},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}}],"page":{"nextCursor":"eyJhIjoidDNfMXRnNmRwbCJ9","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","posts":[{"id":"1thcmtz","fullId":"t3_1thcmtz","subreddit":"AskReddit","title":"what is a subtle way tell someone that you like them?","text":"","author":{"username":"PurpleMoist7744","id":"t2_2cbbmf6g03"},"url":"https://www.reddit.com/r/AskReddit/comments/1thcmtz/what_is_a_subtle_way_tell_someone_that_you_like/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thcmtz/what_is_a_subtle_way_tell_someone_that_you_like/","publishedAt":"2026-05-19T04:56:10.000Z","metrics":{"score":36,"upvotes":36,"upvoteRatio":0.9,"commentCount":31,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th4lhu","fullId":"t3_1th4lhu","subreddit":"AskReddit","title":"How often do you open a Reddit post and immediately leave because it’s too long to read?","text":"","author":{"username":"Current-Brief-7594","id":"t2_x7dg25h5s"},"url":"https://www.reddit.com/r/AskReddit/comments/1th4lhu/how_often_do_you_open_a_reddit_post_and/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th4lhu/how_often_do_you_open_a_reddit_post_and/","publishedAt":"2026-05-18T23:04:53.000Z","metrics":{"score":101,"upvotes":101,"upvoteRatio":0.91,"commentCount":91,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thcozh","fullId":"t3_1thcozh","subreddit":"AskReddit","title":"How are you really?","text":"","author":{"username":"Ok_Pianist3412","id":"t2_2cbbqxj0nk"},"url":"https://www.reddit.com/r/AskReddit/comments/1thcozh/how_are_you_really/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thcozh/how_are_you_really/","publishedAt":"2026-05-19T04:59:12.000Z","metrics":{"score":29,"upvotes":29,"upvoteRatio":0.87,"commentCount":63,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tglfi5","fullId":"t3_1tglfi5","subreddit":"AskReddit","title":"Those who do not fear death, why?","text":"","author":{"username":"lilacc_47","id":"t2_2dnvl3h6pm"},"url":"https://www.reddit.com/r/AskReddit/comments/1tglfi5/those_who_do_not_fear_death_why/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tglfi5/those_who_do_not_fear_death_why/","publishedAt":"2026-05-18T12:40:36.000Z","metrics":{"score":428,"upvotes":428,"upvoteRatio":0.89,"commentCount":1918,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thbgfu","fullId":"t3_1thbgfu","subreddit":"AskReddit","title":"what screams that they clearly have no interest in you?","text":"","author":{"username":"SorryNail6100","id":"t2_2cj03fwfvb"},"url":"https://www.reddit.com/r/AskReddit/comments/1thbgfu/what_screams_that_they_clearly_have_no_interest/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thbgfu/what_screams_that_they_clearly_have_no_interest/","publishedAt":"2026-05-19T03:59:58.000Z","metrics":{"score":25,"upvotes":25,"upvoteRatio":0.81,"commentCount":69,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th02om","fullId":"t3_1th02om","subreddit":"AskReddit","title":"What is a discovery that exists that you feel we as a civilization should be paying more attention to?","text":"","author":{"username":"Defiant_Piano5378","id":"t2_to8ua4rvk"},"url":"https://www.reddit.com/r/AskReddit/comments/1th02om/what_is_a_discovery_that_exists_that_you_feel_we/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th02om/what_is_a_discovery_that_exists_that_you_feel_we/","publishedAt":"2026-05-18T20:24:45.000Z","metrics":{"score":99,"upvotes":99,"upvoteRatio":0.94,"commentCount":111,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgy3el","fullId":"t3_1tgy3el","subreddit":"AskReddit","title":"What’s the biggest change in society that you’ve seen in your life that no one talks about?","text":"","author":{"username":"Substantial-Yam9993","id":"t2_2en3gx50k4"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgy3el/whats_the_biggest_change_in_society_that_youve/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgy3el/whats_the_biggest_change_in_society_that_youve/","publishedAt":"2026-05-18T19:21:43.000Z","metrics":{"score":120,"upvotes":120,"upvoteRatio":0.92,"commentCount":309,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th4iv5","fullId":"t3_1th4iv5","subreddit":"AskReddit","title":"What hobby or interest makes someone immediately more annoying to talk to?","text":"","author":{"username":"Bram-Stroker-_","id":"t2_2dyfit3jau"},"url":"https://www.reddit.com/r/AskReddit/comments/1th4iv5/what_hobby_or_interest_makes_someone_immediately/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th4iv5/what_hobby_or_interest_makes_someone_immediately/","publishedAt":"2026-05-18T23:01:54.000Z","metrics":{"score":62,"upvotes":62,"upvoteRatio":0.82,"commentCount":256,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tg4gql","fullId":"t3_1tg4gql","subreddit":"AskReddit","title":"What are some lazy jobs that pay a ridiculous amount of money?","text":"","author":{"username":"Jordz0_0","id":"t2_2kaduxfk"},"url":"https://www.reddit.com/r/AskReddit/comments/1tg4gql/what_are_some_lazy_jobs_that_pay_a_ridiculous/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tg4gql/what_are_some_lazy_jobs_that_pay_a_ridiculous/","publishedAt":"2026-05-17T22:50:46.000Z","metrics":{"score":5416,"upvotes":5416,"upvoteRatio":0.9,"commentCount":2103,"crosspostCount":1,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thezsf","fullId":"t3_1thezsf","subreddit":"AskReddit","title":"what is the first thing you do in the morning?","text":"","author":{"username":"TraditionalSample945","id":"t2_2e226l4soq"},"url":"https://www.reddit.com/r/AskReddit/comments/1thezsf/what_is_the_first_thing_you_do_in_the_morning/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thezsf/what_is_the_first_thing_you_do_in_the_morning/","publishedAt":"2026-05-19T06:59:53.000Z","metrics":{"score":13,"upvotes":13,"upvoteRatio":0.93,"commentCount":58,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th6snh","fullId":"t3_1th6snh","subreddit":"AskReddit","title":"What’s something you started doing as an adult that surprisingly improved your life a lot?","text":"","author":{"username":"Quick_Marketing_4727","id":"t2_2ebqzix9ae"},"url":"https://www.reddit.com/r/AskReddit/comments/1th6snh/whats_something_you_started_doing_as_an_adult/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th6snh/whats_something_you_started_doing_as_an_adult/","publishedAt":"2026-05-19T00:35:02.000Z","metrics":{"score":39,"upvotes":39,"upvoteRatio":0.92,"commentCount":77,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thf4lu","fullId":"t3_1thf4lu","subreddit":"AskReddit","title":"What habit slowly ruins a romantic relationship?","text":"","author":{"username":"FunYogurtcloset5934","id":"t2_2c665h7ltm"},"url":"https://www.reddit.com/r/AskReddit/comments/1thf4lu/what_habit_slowly_ruins_a_romantic_relationship/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thf4lu/what_habit_slowly_ruins_a_romantic_relationship/","publishedAt":"2026-05-19T07:06:59.000Z","metrics":{"score":13,"upvotes":13,"upvoteRatio":0.93,"commentCount":44,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1theklq","fullId":"t3_1theklq","subreddit":"AskReddit","title":"What is minor inconvenience that completely ruins your mood ?","text":"","author":{"username":"Harris3624","id":"t2_2dy6iqdox7"},"url":"https://www.reddit.com/r/AskReddit/comments/1theklq/what_is_minor_inconvenience_that_completely_ruins/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1theklq/what_is_minor_inconvenience_that_completely_ruins/","publishedAt":"2026-05-19T06:36:29.000Z","metrics":{"score":12,"upvotes":12,"upvoteRatio":0.93,"commentCount":23,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tgojez","fullId":"t3_1tgojez","subreddit":"AskReddit","title":"What is the most beautiful experience in your life?","text":"","author":{"username":"Famous-Courage-9509","id":"t2_2ehdll3xg6"},"url":"https://www.reddit.com/r/AskReddit/comments/1tgojez/what_is_the_most_beautiful_experience_in_your_life/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tgojez/what_is_the_most_beautiful_experience_in_your_life/","publishedAt":"2026-05-18T14:35:49.000Z","metrics":{"score":220,"upvotes":220,"upvoteRatio":0.92,"commentCount":357,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th5vxo","fullId":"t3_1th5vxo","subreddit":"AskReddit","title":"What is the creepy backstory of your house or your former house?","text":"","author":{"username":"Pancake_Maker_1031","id":"t2_20wq819n9w"},"url":"https://www.reddit.com/r/AskReddit/comments/1th5vxo/what_is_the_creepy_backstory_of_your_house_or/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th5vxo/what_is_the_creepy_backstory_of_your_house_or/","publishedAt":"2026-05-18T23:57:10.000Z","metrics":{"score":34,"upvotes":34,"upvoteRatio":0.89,"commentCount":55,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thcpu5","fullId":"t3_1thcpu5","subreddit":"AskReddit","title":"police officers of Reddit, what is the one call you will absolutely never forget?","text":"","author":{"username":"Salty-Tea-6950","id":"t2_2cbbxbt6x2"},"url":"https://www.reddit.com/r/AskReddit/comments/1thcpu5/police_officers_of_reddit_what_is_the_one_call/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thcpu5/police_officers_of_reddit_what_is_the_one_call/","publishedAt":"2026-05-19T05:00:16.000Z","metrics":{"score":16,"upvotes":16,"upvoteRatio":0.73,"commentCount":18,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thdwmi","fullId":"t3_1thdwmi","subreddit":"AskReddit","title":"What’s the best first impression someone made that you still remember?","text":"","author":{"username":"Lonely-Age7678","id":"t2_23sjfcewbi"},"url":"https://www.reddit.com/r/AskReddit/comments/1thdwmi/whats_the_best_first_impression_someone_made_that/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thdwmi/whats_the_best_first_impression_someone_made_that/","publishedAt":"2026-05-19T06:00:53.000Z","metrics":{"score":12,"upvotes":12,"upvoteRatio":0.99,"commentCount":13,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thawye","fullId":"t3_1thawye","subreddit":"AskReddit","title":"What is a tiny, insignificant thing that instantly puts you in a good mood?","text":"","author":{"username":"taheerwanware12","id":"t2_2ems0gxxt5"},"url":"https://www.reddit.com/r/AskReddit/comments/1thawye/what_is_a_tiny_insignificant_thing_that_instantly/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thawye/what_is_a_tiny_insignificant_thing_that_instantly/","publishedAt":"2026-05-19T03:34:40.000Z","metrics":{"score":17,"upvotes":17,"upvoteRatio":0.85,"commentCount":58,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th8786","fullId":"t3_1th8786","subreddit":"AskReddit","title":"Whats a cheap meal you'd still probably eat even if you became rich?","text":"","author":{"username":"Easy_Towel954","id":"t2_1iw6p3aayv"},"url":"https://www.reddit.com/r/AskReddit/comments/1th8786/whats_a_cheap_meal_youd_still_probably_eat_even/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th8786/whats_a_cheap_meal_youd_still_probably_eat_even/","publishedAt":"2026-05-19T01:35:21.000Z","metrics":{"score":22,"upvotes":22,"upvoteRatio":0.66,"commentCount":270,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thfb0u","fullId":"t3_1thfb0u","subreddit":"AskReddit","title":"What is more important, your work or health ?","text":"","author":{"username":"seraphinelux64","id":"t2_2eecy95esr"},"url":"https://www.reddit.com/r/AskReddit/comments/1thfb0u/what_is_more_important_your_work_or_health/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thfb0u/what_is_more_important_your_work_or_health/","publishedAt":"2026-05-19T07:17:03.000Z","metrics":{"score":8,"upvotes":8,"upvoteRatio":0.83,"commentCount":19,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1tg7b1e","fullId":"t3_1tg7b1e","subreddit":"AskReddit","title":"What would shock a kid today if they were transported to 2005?","text":"","author":{"username":"IDoNotLikeTheSand","id":"t2_70294dig"},"url":"https://www.reddit.com/r/AskReddit/comments/1tg7b1e/what_would_shock_a_kid_today_if_they_were/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1tg7b1e/what_would_shock_a_kid_today_if_they_were/","publishedAt":"2026-05-18T00:55:50.000Z","metrics":{"score":2083,"upvotes":2083,"upvoteRatio":0.95,"commentCount":1999,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th7h6i","fullId":"t3_1th7h6i","subreddit":"AskReddit","title":"How are you coping with your depression?","text":"","author":{"username":"BATTlNS0N","id":"t2_qf03tgkb"},"url":"https://www.reddit.com/r/AskReddit/comments/1th7h6i/how_are_you_coping_with_your_depression/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th7h6i/how_are_you_coping_with_your_depression/","publishedAt":"2026-05-19T01:04:11.000Z","metrics":{"score":25,"upvotes":25,"upvoteRatio":0.9,"commentCount":143,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thevu6","fullId":"t3_1thevu6","subreddit":"AskReddit","title":"What food did you love as a kid but lwk hate now?","text":"","author":{"username":"arsenx_","id":"t2_2bfed9zx2o"},"url":"https://www.reddit.com/r/AskReddit/comments/1thevu6/what_food_did_you_love_as_a_kid_but_lwk_hate_now/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thevu6/what_food_did_you_love_as_a_kid_but_lwk_hate_now/","publishedAt":"2026-05-19T06:53:48.000Z","metrics":{"score":8,"upvotes":8,"upvoteRatio":0.72,"commentCount":39,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1th5vdg","fullId":"t3_1th5vdg","subreddit":"AskReddit","title":"What advice took you years later to realize it was good?","text":"","author":{"username":"No-Designer5738","id":"t2_2aj7z8yrdq"},"url":"https://www.reddit.com/r/AskReddit/comments/1th5vdg/what_advice_took_you_years_later_to_realize_it/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1th5vdg/what_advice_took_you_years_later_to_realize_it/","publishedAt":"2026-05-18T23:56:29.000Z","metrics":{"score":28,"upvotes":28,"upvoteRatio":0.91,"commentCount":51,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}},{"id":"1thd26i","fullId":"t3_1thd26i","subreddit":"AskReddit","title":"What’s your least favorite month of the year?","text":"","author":{"username":"Junior_Mulberry7989","id":"t2_18bhsssoq5"},"url":"https://www.reddit.com/r/AskReddit/comments/1thd26i/whats_your_least_favorite_month_of_the_year/","permalinkUrl":"https://www.reddit.com/r/AskReddit/comments/1thd26i/whats_your_least_favorite_month_of_the_year/","publishedAt":"2026-05-19T05:16:57.000Z","metrics":{"score":11,"upvotes":11,"upvoteRatio":0.91,"commentCount":35,"crosspostCount":0,"subredditSubscribers":58582089},"flags":{"isVideo":false,"isPinned":false,"isLocked":false,"isSpoiler":false,"isOver18":false,"isOriginalContent":false}}],"page":{"nextCursor":"eyJhIjoidDNfMXRoZDI2aSJ9","hasMore":true}},"meta":{"requestId":"req_01example_p2","creditsCharged":1,"version":"v1"}}},"empty":{"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 subreddit, sort, timeframe, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/search":{"get":{"tags":["Reddit"],"summary":"Search Reddit posts","description":"Search for posts on Reddit.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.page.hasMore` and `data.page.nextCursor` for pagination rather than inferring completion from `data.totalResults` 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":512,"description":"Search query text for public Reddit posts."},"required":true,"description":"Search query text for public Reddit posts.","name":"query","in":"query"},{"schema":{"type":"string","enum":["relevance","new","top"],"description":"Optional sort order for search results."},"required":false,"description":"Optional sort order for search results.","name":"sortBy","in":"query"},{"schema":{"type":"string","enum":["all","day","week","month","year"],"description":"Optional time range filter for search results."},"required":false,"description":"Optional time range filter for search results.","name":"timeframe","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":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"Whether to request a smaller response shape when available."},"required":false,"description":"Whether to request a smaller response shape when available.","name":"trim","in":"query"}],"responses":{"200":{"description":"Search results for the requested query.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"query":{"type":"string","description":"Search query string evaluated for this response."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable post identifier."},"name":{"type":"string","nullable":true,"description":"Full post name when available."},"title":{"type":"string","nullable":true,"description":"Post title when available."},"author":{"type":"string","nullable":true,"description":"Author username when available."},"subreddit":{"type":"string","nullable":true,"description":"Subreddit name without a leading r/ when available."},"subredditPrefixedName":{"type":"string","nullable":true,"description":"Prefixed subreddit label such as r/example when available."},"url":{"type":"string","nullable":true,"description":"Canonical public post URL when available."},"permalink":{"type":"string","nullable":true,"description":"Public permalink URL when available."},"bodyText":{"type":"string","nullable":true,"description":"Post body text when available."},"score":{"type":"integer","nullable":true,"minimum":0,"description":"Post score when available."},"upvotes":{"type":"integer","nullable":true,"minimum":0,"description":"Upvote count when available."},"upvoteRatio":{"type":"number","nullable":true,"minimum":0,"maximum":1,"description":"Upvote ratio between 0 and 1 when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."},"createdAt":{"type":"string","nullable":true,"description":"ISO-8601 creation timestamp when available."},"isVideo":{"type":"boolean","description":"Whether the post is a video post."},"subredditSubscriberCount":{"type":"integer","nullable":true,"minimum":0,"description":"Subreddit subscriber count when available."}},"required":["id","name","title","author","subreddit","subredditPrefixedName","url","permalink","bodyText","score","upvotes","upvoteRatio","commentCount","createdAt","isVideo"],"description":"A Reddit post in search results."},"description":"Posts returned for this page."},"totalResults":{"type":"integer","minimum":0,"description":"Number of posts returned in this response."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["query","posts","totalResults","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":"webscraping","posts":[{"id":"1sa1sgp","name":"t3_1sa1sgp","title":"A cry to the Webscraping Gods, need web scrapping pro to save us","author":"smokedX","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1sa1sgp/a_cry_to_the_webscraping_gods_need_web_scrapping/","permalink":"https://www.reddit.com/r/webscraping/comments/1sa1sgp/a_cry_to_the_webscraping_gods_need_web_scrapping/","bodyText":"we’ve hit a wall, the site we've been scraping for a year has updated their security and we can't figure out a bypass..\n\nour system keeps being labeled as automated/system-generated traffic by the vendor, and the usual fixes we tried did not resolve it permanently. This is now a minor bottleneck for us.\n\nwe’re not looking for short-term tricks. we need to find someone senior who can look at the stack end to end and tell us whether the problem is browser workflow replication, session/cookie/csrf/state handling, infrastructure design\n\nfor anyone who has hired outside help for problems like this, where did you find the right person? what kind of specialist should we be searching for?\n\ntrying to find someone who can come in, diagnose the root cause, and help us build something durable and scalable, rather than wasting time on trial and error.","score":43,"upvotes":43,"upvoteRatio":0.97,"commentCount":40,"createdAt":"2026-04-02T00:02:33.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1t3eal2","name":"t3_1t3eal2","title":"Please help 🥺🙏 | Web Scraping task","author":"FusionMaster-04","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1t3eal2/please_help_web_scraping_task/","permalink":"https://www.reddit.com/r/webscraping/comments/1t3eal2/please_help_web_scraping_task/","bodyText":"I’m working on a web scraping task where I need to collect structured data like company name, category, turnover, and basic details from EPC-related listings.\n\nI’m facing a few technical challenges and would appreciate guidance:\n\n1. The website is React-based, so content loads dynamically. What is the best approach to reliably extract such data (Selenium, Playwright, or something else)?\n2. Some elements (like lists) have inconsistent HTML structure (e.g., `<ul>` tags sometimes with classes, sometimes without, sometimes multiple on the same page). How do you design a robust parser for this?\n3. There are “Load more” or dynamically loaded sections. What is the recommended way to handle these in automation scripts?\n4. How do you structure scraping workflows to minimize failures due to layout changes?\n\nI am looking for a **code-based, free solution** (preferably Python).\n\nAny guidance, best practices, or learning resources would help.","score":5,"upvotes":5,"upvoteRatio":0.86,"commentCount":31,"createdAt":"2026-05-04T10:57:54.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1q6pxwn","name":"t3_1q6pxwn","title":"Just Started Web Scraping — Is This a Good Start?","author":"franik33","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1q6pxwn/just_started_web_scraping_is_this_a_good_start/","permalink":"https://www.reddit.com/r/webscraping/comments/1q6pxwn/just_started_web_scraping_is_this_a_good_start/","bodyText":"Hi everyone,\n\nI started getting into web scraping about 3–4 days ago. I already have some solid experience with Python, and my first scraping project was a public website. I managed to collect around 7,000 records and everything worked as expected.\n\nI’m curious whether this is considered a decent start for someone new to scraping, or if it’s fairly basic stuff.  \nAlso, I’d like to hear honest opinions: is web scraping still worth investing time in today (for projects, automation, or monetization), or is it becoming a waste of time due to market saturation and restrictions?\n\nAny real-world experiences or insights would be appreciated.\n\nThanks in advance.","score":34,"upvotes":34,"upvoteRatio":0.9,"commentCount":49,"createdAt":"2026-01-07T20:01:30.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1pt0gyd","name":"t3_1pt0gyd","title":"\"We backed up Spotify (~300TB)\"","author":"t-2yrs","subreddit":"Piracy","subredditPrefixedName":"r/Piracy","url":"https://www.reddit.com/r/Piracy/comments/1pt0gyd/we_backed_up_spotify_300tb/","permalink":"https://www.reddit.com/r/Piracy/comments/1pt0gyd/we_backed_up_spotify_300tb/","bodyText":"Context: [https://annas-archive.org/blog/backing-up-spotify.html](https://annas-archive.org/blog/backing-up-spotify.html)","score":21221,"upvotes":21221,"upvoteRatio":0.98,"commentCount":495,"createdAt":"2025-12-22T14:09:17.000Z","isVideo":true,"subredditSubscriberCount":2820831},{"id":"bm31i0","name":"t3_bm31i0","title":"An analysis on the question whether Riot buffs champions which get a new skin (with quite some graphs, data available from webscraping patch notes and leagueofgraphs if you want to do your own analysis)","author":"giantZorg","subreddit":"leagueoflegends","subredditPrefixedName":"r/leagueoflegends","url":"https://www.reddit.com/r/leagueoflegends/comments/bm31i0/an_analysis_on_the_question_whether_riot_buffs/","permalink":"https://www.reddit.com/r/leagueoflegends/comments/bm31i0/an_analysis_on_the_question_whether_riot_buffs/","bodyText":"# Tl,dr: No if you look at winrate, but it's way more likely for them to show up in patch notes.\n\n# Introduction:\n\nHello all. This post is inspired by [u/PriagDE](https://www.reddit.com/user/PriagDE)'s post found [here](https://www.reddit.com/r/leagueoflegends/comments/bkwdqy/history_of_buffs_and_nerfs_and_their_relation_to/) which tried to answer whether Riot buffs champions which will get a new skin. It is a separate post as it has a completely different method and covers a wider array of questions.\n\nTo me as a person, I'm a data scientist working in the retail business with a low number of projects at the time so I used this opportunity to train a little my webscraping skills. I post the results here as I find them interesting and hope you do too.\n\nYou can find all the data, scripts and figures [here](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins) if you want to use the data for your own analysis or scrape something else from the patch notes.\n\n# Table of contents:\n\n* Webscraping of data from leagueofgraphs and the official patch notes\n* Overview on the number of champion changes per patch and skins released\n* Relation between the number of champion changes and skins released\n* Relationship between released skins and winrate changes\n* Final words\n\n# Webscraping of data from leagueofgraphs and the official patch notes\n\nThe first part I needed to do was gather data. To decide whether a champion got buffed when he gets a new skin, I will take the difference between the winrate 20 days before and 20 days after the patch got released. The 20 days are chosen in order to let the winrate settle a bit after patch changes.\n\nThis means I need to gather the patch notes history as well as the winrate of all champions. As mentioned by [u/PriagDE](https://www.reddit.com/user/PriagDE), upcoming skins were only included from patch 4.8 on, so I gathered the patch notes starting from 4.8. This matches nicely the available history on the winrate on leagueofgraphs which starts at the moment approximately at the beginning of season 4. The script which I made to do so is this: [lol\\_skins\\_winrate.py](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_skins_winrate.py). Feel free to use it if you want to do something else with it. It is by no means optimized, but works also behind a proxy. You will need to get a copy of geckodriver to use Firefox as is done in the script.\n\nI also collected the data on popularity and banrate if someone is interested. The saved data files used in the second step are these: [lol\\_champions\\_bannrate.csv](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_champions_bannrate.csv), [lol\\_champions\\_beliebtheit.csv](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_champions_beliebtheit.csv), [lol\\_champions\\_winrate.csv](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_champions_winrate.csv) and [lol\\_patch\\_daten.csv](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_patch_daten.csv) containing the ban rate, popularity, win rate and patch data (which patch was released when with which champion getting changes and which new skins).\n\nTake note that I didn't include the champion changes in 8.23(?) where they changed the runes system and changed base values for all the champions. In addition, I make no difference between skins and chromas released as Riot has an incentive to sell both to you. The skin list should be complete with the exception of some Urgot chromas (I think).\n\n# Overview on the number of champion changes per patch and skins released\n\nThe complete analysis script can be found here: [lol\\_skins\\_nach\\_patches.R](https://github.com/giantZorg/LoL_Analyse_Winrate_Skins/blob/master/lol_skins_nach_patches.R). Again, feel free to use to change it to answer your own questions if you want. It is again not optimized for speed, but for quick development (to all R users, I know there are too many for loops, but they do the job and I wanted to get it done quickly).\n\nSo the first question I wanted to get an answer is how match each champion shows up in the patch notes. This is not completely fair of course as newer released champs have less chances to appear in them, so keep this in mind. The table looks like this:\n\n[Number of champion changes in the patch notes from 4.8 to 9.9. The total number of considered patches is 121.](https://preview.redd.it/uaoadd5m7yw21.png?width=545&format=png&auto=webp&s=292cba413df4b5116a6e10a099df91552b9e815e)\n\nWe can see our favorite problem childs Azir and Ryze showing up in the patch notes a lot. Given that the total number of considered patches is 121, Azir shows up in more than a quarter of them. On the other end of the scale, with have champions like Diana, Blitzcrank or Nami which remain rather stable over the whole time.\n\nThe following two graphs show the number of champion changes over the patches as well as the number of skins/chromas released over the patches. The red line is calculated using a cubic spline smoother with the degrees of freedom determined by cross validation:\n\n[Number of champion changes per patch.](https://preview.redd.it/jkyfwjea8yw21.png?width=1000&format=png&auto=webp&s=7ed31428178a8019e52fddda30479782f415daa3)\n\n[Number of skins\\/chromas released per patch.](https://preview.redd.it/7p953kdc8yw21.png?width=1000&format=png&auto=webp&s=01eaa010ede6157fbd02eefd3f669b30cc473750)\n\nIn the upper plot, we can see that Riot actually slowed down a bit starting in season 7 and does less changes per patch. In the lower plot, we see that the number of released skins/chromas remained fairly constant for quite some time. One might argue that the second half of season 8 and season 9 so far is higher, but the evidence for this is weak.\n\nOne thing not considered here is the amount of work that was necessary when champion reworks were made. The data consideres this as one skin due to the way the data is scraped, but the effort which was necessary by the skin team could have been higher, resulting in less skins published as a result. But in reworks, the also don't need to find a theme for the skins, so they can also be faster than with other skins. Just wanted to mention this as it's a possible source of error.\n\nIn addition, I had a look at the cross correlation between the number of champion changes and the skins released. This comes about that I thought I could see some anticorrelation in the two lines in the graphs above. I will explain below what that exactly means. The cross correlation graph looks like this:\n\n[Cross correlation between the number of champion changes and the number of released skins.](https://preview.redd.it/8fs0zunx9yw21.png?width=1000&format=png&auto=webp&s=3e5ac470e7f1eede55db37f0cec4da929e06ad43)\n\nThe lag is the difference in number of patches considered for the correlation. E.g. the positive value at lag 7 means that if a high number of champion changes is present this patch, the is a tendence for a high number of released skins/chromas 7 patches later. There is also considerable anticorrelation for a lag -5 and -6 which means that if 6 patches ago there were a lot of skins released, this patch has a tendence to have little champion changes.\n\nI have little explanation of these values, only maybe that there a less skins on season start/mid-season/end-of-season as manpower is needed to get mid season right or worlds ready. But it's also only a tendence, the correlations are significant but not too big.\n\n# Relation between the number of champion changes and skins released\n\nHere I had a look whether champions who get a skin released also got champion changes within the last 1 to 3 patches. I remember some comment in Meddlers quick gameplay thoughts where some Rioter wrote that working on a skin puts attention on said champion, making it more likely to get some work (even if only quality of life changes) on them done. Here are the results:\n\n[Number of skins considered in yellow, number of skins with champion getting changes in the last few patches in blue. Considered are the last 1 to 3 patches as well as the patch a skin\\/chroma got released.](https://preview.redd.it/h6vlbyykbyw21.png?width=600&format=png&auto=webp&s=641d7544206041f4a7b7bdb77a89bcbce7fdc450)\n\nWe can see that considering the patch a skin/chroma gets released as well as the last 3 patches, there is a 42% chance of a champion getting changes. This is way higher that the average which is somewhere around 10% if we would assume that the champions selected for changes would happen randomly.\n\nSo this is confirmation that getting a skin/chroma comes with a strong connection to being changed in the patch notes. Remember here that correlation does not imply causation, so we cannot say whether skins/chromas have a causal link to being changed in the patch notes. But there is a strong suggestion that it might be the case.\n\n# Relationship between released skins and winrate changes\n\nAnd finally, we will have a look whether a champion receiving a skin/chroma gets buffed. I will define getting buffed not by appearance in the patch notes, but by comparing the winrate of the corresponding champion 20 days before and 20 days after the patch release for any given skin/chroma. We can debate whether 20 days is a good time period, and maybe I should also consider a longer window before, but I think we can get some good results with 20 days. I excluded release skins for this analysis.\n\nI define getting buffed this way as it also consideres everything that happens in a patch which also includes item changes or systemic jungle changes, where it can be that a champion gets a (compensation) buff on paper, but actually drops in winrate due to core items being changed for example.\n\nI made one boxplot combining all the data available and one separating by season:\n\n[Boxplot with the change in winrate when a champion gets a skin\\/chroma. We see that there is almost no median change in winrate for these champions.](https://preview.redd.it/c10wzto1eyw21.png?width=400&format=png&auto=webp&s=d9b18a716aca58b4fe7f9ca817585dd0141eb658)\n\n&#x200B;\n\n[Boxplots with the change in winrate when a champion gets a skin\\/chroma, separated by season.](https://preview.redd.it/suh6xxsbeyw21.png?width=800&format=png&auto=webp&s=53d319a30e63e1c28b3021b1676236b9e2e2fc6e)\n\nWe can clearly see that there is **no** significant change in winrate when a champion gets a skin/chroma. I also put the data in the following table:\n\n|Minimum|25% Quantile|Median|75% Quantile|Maximum|Mean|\n|:-|:-|:-|:-|:-|:-|\n|\\-8.11|\\-0.83|0.02|0.76|10.3|\\-0.02|\n\nWe also see in the second graph that this remains fairly constant over the seasons, with season 7 actually being that champions which got new skins decrease in winrate.\n\n# Final words\n\nThank you for reading until here. I hope this has been an interesting read as it was interesting for me to do the analysis. If you have other interesting questions that you think could be answered with this data, write it in the comments and I try to answer them with the data. I don't have too much spare time at the moment anymore, so my answer might be a bit delayed, but I will try to get to them.\n\nHave a good day :)","score":2285,"upvotes":2285,"upvoteRatio":0.96,"commentCount":199,"createdAt":"2019-05-08T09:16:26.000Z","isVideo":false,"subredditSubscriberCount":8378481},{"id":"16r3otg","name":"t3_16r3otg","title":"itsAllWebscrapping","author":"JustASandwhich","subreddit":"ProgrammerHumor","subredditPrefixedName":"r/ProgrammerHumor","url":"https://www.reddit.com/r/ProgrammerHumor/comments/16r3otg/itsallwebscrapping/","permalink":"https://www.reddit.com/r/ProgrammerHumor/comments/16r3otg/itsallwebscrapping/","bodyText":null,"score":2875,"upvotes":2875,"upvoteRatio":0.95,"commentCount":64,"createdAt":"2023-09-24T17:39:31.000Z","isVideo":false,"subredditSubscriberCount":4714040},{"id":"1ocq87g","name":"t3_1ocq87g","title":"I built something that webscrapes 99% of the internet","author":"rexis_nobilis_","subreddit":"aiagents","subredditPrefixedName":"r/aiagents","url":"https://www.reddit.com/r/aiagents/comments/1ocq87g/i_built_something_that_webscrapes_99_of_the/","permalink":"https://www.reddit.com/r/aiagents/comments/1ocq87g/i_built_something_that_webscrapes_99_of_the/","bodyText":"so this is part of a YouTube video I just released (trying to make the style of the videos fun and entertaining) about a general AI agent I’m building, has a pretty unique infrastructure that lets her do some crazy stuff!\n\neither way, I decided to make a video on how you can use it to web scrape almost any website and even compound tasks on top of it  all without touching a line of code.\n\nFYI: web scraping is just one use-case, it can also do things like:\n* create, read, update, delete files in her operating system\n* browse the web in real-time\n* connect to apps, databases (even personal ones) and IoTs\n* schedule recurring tasks just with prompts…and so much more.\n\nhere are a few of the prompts I show in the video if you want to try them out:\n\n> Go to the Browserbase pricing page. Gather all the pricing tier information, including the plan name, monthly and yearly cost, features included in each plan, and any usage limits. Convert this data into a clean JSON format where each plan is an object with its corresponding details. Then save the JSON file into agentic storage under the name browserbase_pricing.json.\n\n> Search Amazon for the top running backpack listings. For each listing, extract the title, product link, price, and description. Organize all this information into a well-formatted Excel file, with each column labeled clearly (Title, Link, Price, Description). Save the file in agentic storage.\n\n> Search LinkedIn for posts about AI in Healthcare. Summarize each post, collect the author’s full name, a quick description about them, and the post link in a CSV file. Save everything into a folder called \"Linkedin healthcare leads\".\n\nI’m also beta testing a new feature that will let you run thousands of tasks at scale. For example, you could just write:\n\n> “Fetch me 2,000 manufacturing companies in Europe and the U.S. that have 10–200 employees, founded after 2010. Include the company name, website, HQ location, description, and score from 1–10 on how well it matches what we’re currently selling in an excel file (based on company_products.txt in the storage).”\n\n…and it will handle it, all with just a prompt!\nif you want to test it out, just lmk, I’d love to get your feedback :)","score":191,"upvotes":191,"upvoteRatio":0.89,"commentCount":46,"createdAt":"2025-10-21T21:51:42.000Z","isVideo":true,"subredditSubscriberCount":108663},{"id":"1rzudf1","name":"t3_1rzudf1","title":"(OC) Taler Socialdemokraterne med to tunger omkring boligskat? Jeg har lavet et webscrape, der tyder på det","author":"Purple-Highway-4048","subreddit":"Denmark","subredditPrefixedName":"r/Denmark","url":"https://www.reddit.com/r/Denmark/comments/1rzudf1/oc_taler_socialdemokraterne_med_to_tunger_omkring/","permalink":"https://www.reddit.com/r/Denmark/comments/1rzudf1/oc_taler_socialdemokraterne_med_to_tunger_omkring/","bodyText":"Hej Hestenettet.\n\nJeg har siden nytår været ret interesseret i, hvad Socialdemokratiet vil gøre i forhold til boligskat, hvis/når de får magten igen efter valget. I nytårstalen insinuerede Mette Frederiksen nemlig ret kraftigt, at en skat på boliggevinster kunne være på vej, da hun sagde, at \"Der er noget galt, når nogen er blevet rige alene ved at bo det rigtig sted.\"\n\nSiden har hun dog trukket i land igen og lovet, at der ikke ville komme en skat på boliggevinster.\n\nMen som vi ved, så hænder det jo, at Socialdemokratiet finder på ting efter et valg, som de ikke var helt klare omkring før et valg (looking at you, Store Bededag).\n\nOg da jeg så flere S-kandidater i København campaigne ret hårdt på beskatning af boliggevinster, satte jeg mig for at lave et webscrape for faktisk at se, hvor partiets kandidater står i DR's kandidattest.\n\nOg ja, I kan selv se resultatet i billedet. 47 ud af 79 kandidater var enten \"lidt enig\" eller \"enig\" i DR's udsagn, der lyder \"De boligejere, der tjener mest på prisstigninger skal betale mere i skat\". Altså 60 pct. af Socialdemokratiets samlede antal kandidater. Kigger man kun på kandidaterne i København, er tallet 7 ud af 10.\n\nJeg er selvfølgelig biased, fordi jeg har købt en lejlighed i Valby, som jeg håber at kunne få noget friværdi ud af, så jeg kan opgradere på et tidspunkt, men mest af alt ærgrer jeg mig over, at der skal være sådan en tvivl omkring kursen. \n\nFair nok, at man er for en skat på boliggevinster (det tror jeg såmænd også mange her i tråden vil være, og fred være med det), men jeg synes da i det mindste, at man som statsministerparti skal være soleklar omkring det inden et valg, så borgerne kan planlægge derefter.\n\nHvad tænker I? Tror I, at der kommer en boligskat, hvis rød blok kommer til magten?","score":0,"upvotes":0,"upvoteRatio":0.45,"commentCount":40,"createdAt":"2026-03-21T15:30:58.000Z","isVideo":false,"subredditSubscriberCount":855373},{"id":"1nw8ejy","name":"t3_1nw8ejy","title":"Why haven't LLMs solved webscraping?","author":"Live_Baker_6532","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1nw8ejy/why_havent_llms_solved_webscraping/","permalink":"https://www.reddit.com/r/webscraping/comments/1nw8ejy/why_havent_llms_solved_webscraping/","bodyText":"Why is it that LLMs have not revolutionized webscraping where we can simply make a request or a call and have an LLM scrape our desired site?","score":36,"upvotes":36,"upvoteRatio":0.82,"commentCount":54,"createdAt":"2025-10-02T16:23:23.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1i6tfec","name":"t3_1i6tfec","title":"Why does webscraping cause this facial expression?","author":"DM_Me_Summits_In_UAE","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1i6tfec/why_does_webscraping_cause_this_facial_expression/","permalink":"https://www.reddit.com/r/webscraping/comments/1i6tfec/why_does_webscraping_cause_this_facial_expression/","bodyText":null,"score":378,"upvotes":378,"upvoteRatio":0.99,"commentCount":36,"createdAt":"2025-01-21T21:10:48.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1siuxmq","name":"t3_1siuxmq","title":"webscraping company careers pages","author":"Pale-Row-4817","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1siuxmq/webscraping_company_careers_pages/","permalink":"https://www.reddit.com/r/webscraping/comments/1siuxmq/webscraping_company_careers_pages/","bodyText":"I work in sales prospecting and need to analyze job openings across multiple company career pages to identify hiring patterns. I need to scrape company job boards on on ATS's like Greenhouse, Workday, and icims to extract data like total job count, job category breakdown, frontline versus management roles, and posting frequency for each role type. Manually collecting this from each company's careers page is incredibly time-consuming. I'm looking for web scraping or automation solutions, ideally an agent-based approach, that can pull this data directly from company career pages rather than aggregated job boards like Indeed or ZipRecruiter, since the company data is more accurate and complete. Any suggestions on tools or approaches?","score":9,"upvotes":9,"upvoteRatio":0.91,"commentCount":22,"createdAt":"2026-04-11T21:05:17.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"14agito","name":"t3_14agito","title":"Meta will make their next LLM free for commercial use, putting immense pressure on OpenAI and Google","author":"ShotgunProxy","subreddit":"ChatGPT","subredditPrefixedName":"r/ChatGPT","url":"https://www.reddit.com/r/ChatGPT/comments/14agito/meta_will_make_their_next_llm_free_for_commercial/","permalink":"https://www.reddit.com/r/ChatGPT/comments/14agito/meta_will_make_their_next_llm_free_for_commercial/","bodyText":"IMO, this is a major development in the open-source AI world as Meta's foundational LLaMA LLM is already one of the most popular base models for researchers to use. \n\n[My full deepdive is here](https://www.artisana.ai/articles/metas-plan-to-offer-free-commercial-ai-models-puts-pressure-on-google-and), but I've summarized all the key points on why this is important below for Reddit community discussion.\n\n**Why does this matter?**\n\n* **Meta plans on offering a commercial license for their next open-source LLM,** which means companies can freely adopt and profit off their AI model for the first time.\n* **Meta's current LLaMA LLM is already the most popular open-source LLM foundational model in use**. Many of the new open-source LLMs you're seeing released use LLaMA as the foundation. \n* **But LLaMA is only for research use; opening this up for commercial use would truly really drive adoption.** And this in turn places massive pressure on Google + OpenAI.\n* **There's likely massive demand for this already:** I speak with ML engineers in my day job and many are tinkering with LLaMA on the side. But they can't productionize these models into their commercial software, so the commercial license from Meta would be the big unlock for rapid adoption.\n\n**How are OpenAI and Google responding?**\n\n* **Google seems pretty intent on the closed-source route.** Even though an internal memo from an AI engineer called them out for having \"no moat\" with their closed-source strategy, executive leadership isn't budging.\n* **OpenAI is feeling the heat and plans on releasing their own open-source model.** Rumors have it this won't be anywhere near GPT-4's power, but it clearly shows they're worried and don't want to lose market share. Meanwhile, Altman is pitching global regulation of AI models as his big policy goal.\n* **Even the US government seems worried about open source;** last week a bipartisan Senate group sent a letter to Meta asking them to explain why they irresponsibly released a powerful open-source model into the wild\n\n**Meta, in the meantime, is really enjoying their limelight from the contrarian approach.** \n\n* In an interview this week, Meta's Chief AI scientist Yan LeCun dismissed any worries about AI posing dangers to humanity as \"preposterously ridiculous.\"\n\n**P.S. If you like this kind of analysis,** I write [a free newsletter](https://artisana.beehiiv.com/subscribe?utm_source=reddit&utm_campaign=chatgpt230615) that tracks the biggest issues and implications of generative AI tech. It's sent once a week and helps you stay up-to-date in the time it takes to have your Sunday morning coffee.","score":5439,"upvotes":5439,"upvoteRatio":0.95,"commentCount":634,"createdAt":"2023-06-15T23:10:57.000Z","isVideo":false,"subredditSubscriberCount":11492146},{"id":"wg5s68","name":"t3_wg5s68","title":"Valkia found while webscraping the contents.totalwar.com website","author":"mrhugo13","subreddit":"totalwar","subredditPrefixedName":"r/totalwar","url":"https://www.reddit.com/r/totalwar/comments/wg5s68/valkia_found_while_webscraping_the/","permalink":"https://www.reddit.com/r/totalwar/comments/wg5s68/valkia_found_while_webscraping_the/","bodyText":null,"score":577,"upvotes":577,"upvoteRatio":0.97,"commentCount":67,"createdAt":"2022-08-04T16:36:06.000Z","isVideo":false,"subredditSubscriberCount":483502},{"id":"145f1r8","name":"t3_145f1r8","title":"People forget why they make their API free.","author":"propjX","subreddit":"ProgrammerHumor","subredditPrefixedName":"r/ProgrammerHumor","url":"https://www.reddit.com/r/ProgrammerHumor/comments/145f1r8/people_forget_why_they_make_their_api_free/","permalink":"https://www.reddit.com/r/ProgrammerHumor/comments/145f1r8/people_forget_why_they_make_their_api_free/","bodyText":null,"score":9971,"upvotes":9971,"upvoteRatio":0.98,"commentCount":371,"createdAt":"2023-06-09T19:55:50.000Z","isVideo":false,"subredditSubscriberCount":4714040},{"id":"1s3mzzb","name":"t3_1s3mzzb","title":"Webscraping, crear un Bot","author":"JesusMendoza2145","subreddit":"ColombiaDevs","subredditPrefixedName":"r/ColombiaDevs","url":"https://www.reddit.com/r/ColombiaDevs/comments/1s3mzzb/webscraping_crear_un_bot/","permalink":"https://www.reddit.com/r/ColombiaDevs/comments/1s3mzzb/webscraping_crear_un_bot/","bodyText":"Saludos colegas, actualmente estoy trabajando en un proyecto personal, estoy creando un bot para hacer scraping a unas paginas. pero presento dificultad para hacerle bypass a cloudflare alguien me puede ayudar?","score":5,"upvotes":5,"upvoteRatio":0.86,"commentCount":19,"createdAt":"2026-03-25T20:53:42.000Z","isVideo":false,"subredditSubscriberCount":12359},{"id":"1k8ml01","name":"t3_1k8ml01","title":"How important is webscraping as a skill for Data Engineers?","author":"godz_ares","subreddit":"dataengineering","subredditPrefixedName":"r/dataengineering","url":"https://www.reddit.com/r/dataengineering/comments/1k8ml01/how_important_is_webscraping_as_a_skill_for_data/","permalink":"https://www.reddit.com/r/dataengineering/comments/1k8ml01/how_important_is_webscraping_as_a_skill_for_data/","bodyText":"Hi all,\n\nI am teaching myself Data Engineering. I am working on a project that incorporates everything I know so far and this includes getting data via Web scraping. \n\nI think I underestimated how hard it would be. I've taken a course on webscraping but I underestimated the depth that exists, the tools available as well as the fact that the site itself can be an antagonist and try to stop you from scraping. \n\nThis is not to mention that you need a good understanding of HTML and website; which for me, as a person who only knows coding through the eyes of databases and pandas was quite a shock. \n\nAnyways, I just wanted to know how relevant webscraping is in the toolbox of a data engineers. \n\nThanks","score":53,"upvotes":53,"upvoteRatio":0.85,"commentCount":61,"createdAt":"2025-04-26T20:37:14.000Z","isVideo":false,"subredditSubscriberCount":454134},{"id":"1s2d4hp","name":"t3_1s2d4hp","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1s2d4hp/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1s2d4hp/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":3,"upvotes":3,"upvoteRatio":1,"commentCount":16,"createdAt":"2026-03-24T13:01:49.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1rovtae","name":"t3_1rovtae","title":"Beginner need help trying to build a webscraper","author":"Prestigious-Cup-4722","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1rovtae/beginner_need_help_trying_to_build_a_webscraper/","permalink":"https://www.reddit.com/r/webscraping/comments/1rovtae/beginner_need_help_trying_to_build_a_webscraper/","bodyText":"Hello, i've build a scraper that should collect data from idealo. For now, theres only one product from which im trying to get all the offers with ranking, company, prices, shipping info and reviews...\n\nAside from that, i want to get the data sorted by two categories: product price and total price with a screenshot of both so that i can check the data. \n\nI'm using python and playwright, data should be collected in one csv file. \n\nNow I'm facing a few problems:\n\n1. Idealo changes their website so that my scraper cant differentiate between different prices (promotions like \"shipping free from X€\" become total costs...) and companys are suddenly \"unknown\"\n\n2. screenshots are not taken, i only got the screenshot with the category 'product', so i cant check the total price data\n\n3. the last time i started the scraper, a new csv file was opened altough the csv file i had should be carried on (worked for 1-2 weeks) \n\ni'm building this scraper for my professor but i don't have any knowledge about programming, also he needs the data for about a month so i thought about doing it manually since this wont be the last product i need to scrape & i don't know much about the maintenance and the limitations - been doing it with the free versions of chatgpt & claude because there is no budget","score":1,"upvotes":1,"upvoteRatio":0.6,"commentCount":18,"createdAt":"2026-03-09T09:44:10.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1ro6w0j","name":"t3_1ro6w0j","title":"Trawl: Self healing AI webscraper written in go","author":"KingRonra","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1ro6w0j/trawl_self_healing_ai_webscraper_written_in_go/","permalink":"https://www.reddit.com/r/webscraping/comments/1ro6w0j/trawl_self_healing_ai_webscraper_written_in_go/","bodyText":"I've been lurking here for a while and the #1 recurring pain point is obvious: selectors break. Site redesigns, A/B tests, minor template changes — and your scraper is silently returning garbage.\n\nSo I built trawl. You tell it what fields you want in plain English:\n\ntrawl \"[https://books.toscrape.com](https://books.toscrape.com)\" --fields \"title, price, rating, in\\_stock\"\n\nIt fetches a sample page, sends simplified HTML to an LLM (Claude), and gets back a full extraction strategy — CSS selectors, fallbacks, type mappings, pagination rules. Then it caches that strategy and applies it to every page using Go + goquery. No LLM calls after the first one.\n\nSite changes? The structural fingerprint won't match the cache, so it re-derives automatically.\n\nWhere it gets really useful is pages with multiple data sections. Say you hit a company page that has a leadership team table, a financials summary, and a product grid all on one page. Instead of writing selectors that target the right section, you just tell it what you're after:\n\ntrawl \"[https://example.com/about](https://example.com/about)\" \\\\\n\n\\--query \"executive leadership team\" \\\\\n\n\\--fields \"name, title, bio\" \\\\\n\n\\--format json\n\nThe LLM understands you want the leadership section, not the financials table, and scopes the extraction to the right container. No manual DOM inspection needed.\n\nThe --plan flag lets you see exactly what it came up with before extracting anything, so you're not trusting a black box:\n\n$ trawl \"[https://example.com/about](https://example.com/about)\" \\\\\n\n\\--query \"executive leadership team\" \\\\\n\n\\--fields \"name, title, bio\" --plan\n\nStrategy for [https://example.com/about](https://example.com/about)\n\nContainer: section#leadership\n\nItem selector: div.team-member\n\nFields:\n\nname:  h3.member-name -> text (string)\n\ntitle: span.role -> text (string)\n\nbio:   [p.bio](http://p.bio) \\-> text (string)\n\nConfidence: 0.93\n\nSome other things it handles that I'm especially happy with:\n\n\\- JS-rendered SPAs: headless browser with DOM stability detection, waits for element count to stabilize, scrolls for lazy loading, clicks through \"Show more\" buttons\n\n\\- Self-healing: tracks extraction success rate per batch, re-derives if it drops below 70%\n\n\\- Iframes: auto-detects when iframe content has richer data than the outer page\n\nOutputs JSON, JSONL, CSV, or Parquet. Pipes to jq, csvkit, etc.:\n\ntrawl \"[https://example.com/products](https://example.com/products)\" --fields \"name, price\" --format jsonl | jq 'select(.price > 50)'\n\nGo binary, so no Python env to manage. MIT licensed.\n\nGitHub: [https://github.com/akdavidsson/trawl](https://github.com/akdavidsson/trawl)\n\nWould love feedback from this community, you all know the edge cases better than anyone.","score":57,"upvotes":57,"upvoteRatio":0.93,"commentCount":11,"createdAt":"2026-03-08T14:56:31.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1rw5v6k","name":"t3_1rw5v6k","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1rw5v6k/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1rw5v6k/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":6,"upvotes":6,"upvoteRatio":1,"commentCount":15,"createdAt":"2026-03-17T13:00:56.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1le7web","name":"t3_1le7web","title":"NSEIndia  webscraping  has become impossible (Akamai)","author":"gripped909","subreddit":"IndianStockMarket","subredditPrefixedName":"r/IndianStockMarket","url":"https://www.reddit.com/r/IndianStockMarket/comments/1le7web/nseindia_webscraping_has_become_impossible_akamai/","permalink":"https://www.reddit.com/r/IndianStockMarket/comments/1le7web/nseindia_webscraping_has_become_impossible_akamai/","bodyText":"Earlier it was easily possible to scrape data of NSEIndia(Optionschain - [link](https://www.nseindia.com/option-chain)) for personal use using a simple Python-requests call .\n\nHowever recently looks like NSEIndia has switched to Akamai [API Protector](https://www.akamai.com/products/app-and-api-protector) , making the task almost impossible .\n\nIndividual requests with ample delay of 5 seconds between them are also getting flagged as bots .\n\nTried using Selenium and Playwright to simulate a real user's browser clicks , but with even a single request Akamai detects the bot and gives a 403 ERROR.\n\nHas anyone tried any other successful solution?","score":160,"upvotes":160,"upvoteRatio":0.95,"commentCount":29,"createdAt":"2025-06-18T04:15:25.000Z","isVideo":false,"subredditSubscriberCount":1320632},{"id":"1tbfx25","name":"t3_1tbfx25","title":"Webscraping and screenshotting?","author":"jeyunh","subreddit":"Playwright","subredditPrefixedName":"r/Playwright","url":"https://www.reddit.com/r/Playwright/comments/1tbfx25/webscraping_and_screenshotting/","permalink":"https://www.reddit.com/r/Playwright/comments/1tbfx25/webscraping_and_screenshotting/","bodyText":"Has anyone successfully used Playwright for long-running high-volume screenshot rendering in production? I keep running into memory issues.\n\nContext:  \n\\-Java 17 + Playwright  \n\\-Using Chromium headless browser  \n\\-Purpose is ONLY chart/page rendering + screenshots.","score":0,"upvotes":0,"upvoteRatio":0.5,"commentCount":5,"createdAt":"2026-05-12T21:49:32.000Z","isVideo":false,"subredditSubscriberCount":8386},{"id":"1q47k94","name":"t3_1q47k94","title":"How much does webscraping cost?","author":"TangerineBetter855","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1q47k94/how_much_does_webscraping_cost/","permalink":"https://www.reddit.com/r/webscraping/comments/1q47k94/how_much_does_webscraping_cost/","bodyText":"is it possible to scrape large sites like youtube or tinder and is scraping apps possible or is it only sites?","score":13,"upvotes":13,"upvoteRatio":0.68,"commentCount":23,"createdAt":"2026-01-05T01:08:09.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1sx61e7","name":"t3_1sx61e7","title":"Letting your AI get used in a war legit but asking so to find you a cheap proxy for webscraping is a reason for ban nice 🤠","author":"CarGold87","subreddit":"codex","subredditPrefixedName":"r/codex","url":"https://www.reddit.com/r/codex/comments/1sx61e7/letting_your_ai_get_used_in_a_war_legit_but/","permalink":"https://www.reddit.com/r/codex/comments/1sx61e7/letting_your_ai_get_used_in_a_war_legit_but/","bodyText":"Hi gang is there any one got banned like me!","score":0,"upvotes":0,"upvoteRatio":0.5,"commentCount":8,"createdAt":"2026-04-27T14:53:10.000Z","isVideo":false,"subredditSubscriberCount":97697},{"id":"1scld0y","name":"t3_1scld0y","title":"Problemas legales con webscrapping","author":"moon-cat99","subreddit":"DerechoGenial","subredditPrefixedName":"r/DerechoGenial","url":"https://www.reddit.com/r/DerechoGenial/comments/1scld0y/problemas_legales_con_webscrapping/","permalink":"https://www.reddit.com/r/DerechoGenial/comments/1scld0y/problemas_legales_con_webscrapping/","bodyText":"Buenas! estoy pensando un proyecto personal que involucra hacer webscrapping de paginas de inmobiliarias/clasificados y quería saber que tantas posibilidades tengo de terminar vetado de todas las inmobiliarias de la ciudad y tener que irme a vivir abajo de un puente. Considerando que no tienen por lo general TyC, deberia evitar datos de contacto/nombres, imagino, asumiendo que se consideran datos personales? La dirección del inmueble entra como dato personal?","score":0,"upvotes":0,"upvoteRatio":0.36,"commentCount":11,"createdAt":"2026-04-04T21:31:35.000Z","isVideo":false,"subredditSubscriberCount":96579}],"totalResults":25,"page":{"nextCursor":"t3_1scld0y","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"socialfetch_fixture_no_results_000000","posts":[],"totalResults":0,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"query":"webscraping","posts":[{"id":"1ksizv5","name":"t3_1ksizv5","title":"Fiz webscrapping em todos os anuncios do DF imóveis e obtive os seguintes resultados dos imóveis de brasilia. Antes de tudo, não sou engenheiro de dados, apenas um curioso que queria ver como Ruby sairia nessa atividade.","author":"CabecaRaspada","subreddit":"brasilia","subredditPrefixedName":"r/brasilia","url":"https://www.reddit.com/r/brasilia/comments/1ksizv5/fiz_webscrapping_em_todos_os_anuncios_do_df/","permalink":"https://www.reddit.com/r/brasilia/comments/1ksizv5/fiz_webscrapping_em_todos_os_anuncios_do_df/","bodyText":"https://preview.redd.it/ll7mbt3uq92f1.png?width=1054&format=png&auto=webp&s=facd8d9de45bd402d5c7fe641683bb1253e0ca81\n\nhttps://preview.redd.it/pgayo02uq92f1.png?width=1075&format=png&auto=webp&s=aedc0e3dc4c306c44859bf9fe0e1f369713ea286\n\no projeto ta em fase beta, ainda não hospedei ele (e não sei se vou hospedar sendo sincero, até porque o scrapping demorou HORAS para ser finalizado, e eu não conseguiria arcar com os custos de um servidor).\n\nmas ta ai algum dos resultados que obtive","score":114,"upvotes":114,"upvoteRatio":0.99,"commentCount":37,"createdAt":"2025-05-22T05:25:55.000Z","isVideo":false,"subredditSubscriberCount":108160},{"id":"1jxeouq","name":"t3_1jxeouq","title":"Purpose of webscraping?","author":"Mizzen_Twixietrap","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1jxeouq/purpose_of_webscraping/","permalink":"https://www.reddit.com/r/webscraping/comments/1jxeouq/purpose_of_webscraping/","bodyText":"What's the purpose of it? \n\nI get that you get a lot of information, but this information can be outdated by a mile. And what are you to use of this information anyway?\n\nYes you can get Emails, which you then can sell to other who'll make cold calls, but the rest I find hard to see any purpose with?\n\nSorry if this is a stupid question.\n\nEdit - Thanks for all the replies. It has shown me that scraping is used for a lot of things mostly AI. (Trading bots, ChatGPT etc.) Thank you for taking your time to tell me ☺️","score":6,"upvotes":6,"upvoteRatio":0.58,"commentCount":63,"createdAt":"2025-04-12T10:57:58.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1qj654h","name":"t3_1qj654h","title":"Webscraper gratis. Que opinan?","author":"AverellPSG","subreddit":"CharruaDevs","subredditPrefixedName":"r/CharruaDevs","url":"https://www.reddit.com/r/CharruaDevs/comments/1qj654h/webscraper_gratis_que_opinan/","permalink":"https://www.reddit.com/r/CharruaDevs/comments/1qj654h/webscraper_gratis_que_opinan/","bodyText":"Soy vibe coder en serie y hice otra poronga\n\n[https://scrapeurls.xyz](https://scrapeurls.xyz) \n\n  \nQue les parece? \n\nFront: typescript\n\nBack: n8n con custom api de crawl4ai","score":3,"upvotes":3,"upvoteRatio":0.62,"commentCount":20,"createdAt":"2026-01-21T18:36:33.000Z","isVideo":false,"subredditSubscriberCount":32871},{"id":"1rbmnrb","name":"t3_1rbmnrb","title":"Hiring - WebScraping + iMessage to CrM","author":"rationalbou896","subreddit":"WebDeveloperJobs","subredditPrefixedName":"r/WebDeveloperJobs","url":"https://www.reddit.com/r/WebDeveloperJobs/comments/1rbmnrb/hiring_webscraping_imessage_to_crm/","permalink":"https://www.reddit.com/r/WebDeveloperJobs/comments/1rbmnrb/hiring_webscraping_imessage_to_crm/","bodyText":"Hi guys,\n\nLooking to get two things done.\n\nOne. Looking to scrape Google Maps and then push the information to my CRM.\n\n2. Looking forward iMessage using Open bubbles of blue bubbles to my CRM need to wear integration for this.\n\nIf you have any experience in doing this please message me. I’m not sure if the budget or the course because I’m not sure if this can be done if you can let’s discuss thanks","score":5,"upvotes":5,"upvoteRatio":0.86,"commentCount":15,"createdAt":"2026-02-22T14:04:19.000Z","isVideo":false,"subredditSubscriberCount":81964},{"id":"1rqsvgp","name":"t3_1rqsvgp","title":"Python + Selenium at scale (50 nodes, 3.9M records)","author":"SuccessfulFact5324","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1rqsvgp/python_selenium_at_scale_50_nodes_39m_records/","permalink":"https://www.reddit.com/r/webscraping/comments/1rqsvgp/python_selenium_at_scale_50_nodes_39m_records/","bodyText":"I've been running this scrapper for 2+ years across 50  nodes, 3.9M+ records collected from a very popular job site. Here are the few scraping challenges — would love feedback from people who've solved these better.\n\n\\## Full browser over browserless\n\nThe target site fingerprints navigator.webdriver, so I override it via JS and disable automation flags in Chrome. Headless mode got detected faster than a visible browser, so I run full Chrome on each node with random user-agent rotation. Each node also runs through a VPN before the script starts.\n\n*## Avoiding brittle class selectors*\n\nThe site redesigns frequently. I target elements by tag name or text content via XPATH wherever possible instead of class names. For pagination I match button text rather than the button's class. For job links I target the a tag directly — stable across every redesign so far.\n\n*## 429 handling*\n\nAt \\~50 nodes running in parallel, rate limiting is constant. The site doesn’t return a proper HTTP error and instead renders a “Reload” button in the page source, so I detect it via `page_source`, locate the button with XPath using the inner text, and retry up to 5 times. After each reload I also check for auth-wall redirects since the site sometimes sends you to login instead. I run traffic through regular VPN endpoints to reduce rate limits, but those occasionally get flagged or banned by the target site too.\n\n*## Sign-in modal interception*\n\nLogin Modals block content on almost every page load. I use a 3-fallback dismissal strategy: X button → Escape key via ActionChains → JavaScript CSS force-hide. The JS fallback handles cases where the modal intercepts all click events and neither of the first two approaches work.\n\n**## Stacks used**\n\nScraping: Python, Selenium, BeautifulSoup, spaCy\n\nInfrastructure:  50 nodes, NAS, a VPN per node, WiFi smart power strip for auto power-cycling failed nodes\n\nMonitoring:  Custom dashboard showing real-time node status\n\n*## Questions:*\n\n\\- How do you handle sites that A/B test their UI constantly — multiple selector fallbacks or parse raw HTML offline?\n\n\\- VPN at this scale vs residential proxies — worth the switch?\n\n\\- Any better approach to modal dismissal than layered fallbacks?","score":882,"upvotes":882,"upvoteRatio":0.99,"commentCount":181,"createdAt":"2026-03-11T12:50:40.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1sevbhd","name":"t3_1sevbhd","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1sevbhd/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1sevbhd/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":6,"upvotes":6,"upvoteRatio":0.88,"commentCount":7,"createdAt":"2026-04-07T13:01:02.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1p8dg89","name":"t3_1p8dg89","title":"WebScraping in golang","author":"North_Fall_8333","subreddit":"golang","subredditPrefixedName":"r/golang","url":"https://www.reddit.com/r/golang/comments/1p8dg89/webscraping_in_golang/","permalink":"https://www.reddit.com/r/golang/comments/1p8dg89/webscraping_in_golang/","bodyText":"Is webscraping in go a good idea? I'm used to using playwright and selenium for webscraping in java/kotlin but i've been focusing on learning golang recently is this a good idea and if yes than what should I use for it?","score":16,"upvotes":16,"upvoteRatio":0.73,"commentCount":24,"createdAt":"2025-11-27T21:24:09.000Z","isVideo":false,"subredditSubscriberCount":359685},{"id":"1rsohsy","name":"t3_1rsohsy","title":"Need advice on webscraping business registry","author":"XSymbiose","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1rsohsy/need_advice_on_webscraping_business_registry/","permalink":"https://www.reddit.com/r/webscraping/comments/1rsohsy/need_advice_on_webscraping_business_registry/","bodyText":"Hi all,\n\nI built a company data enrichment scraper in Python and I think I may have designed the network side badly. \n\nIt mainly uses standard **HTTP requests** plus **Playwright** for some website fetches, and I also added **multithreading**, **rotating proxies**, and random **user agents** to make the scraping more resilient, but I’m now wondering if that was a mistake for this type of workflow.\n\nThe goal is simple:\n\n* start from company website URLs\n* fetch the homepage and try to find the legal/company info page\n* extract the company's business registry number from the site\n* query a public company data source\n* save the enriched result locally\n\nThe issue is that my proxy provider (100 proxy servers) flagged my account after noticing a large volume of requests going through their network to public company data sources, institutional websites, and a business registry. \n\nThe original idea was to keep proxies limited to regular website fetches and avoid using them for public endpoints, but the proxy provider blocked the account before I could properly separate that traffic. So before making major changes, I’d like to do a proper check on the overall setup.\n\nAnother thing I probably got wrong is that, once proxies were added, I didn’t pay attention to the API’s own rate-limit signals. I wasn’t really using the timing/cooldown information returned when request volume got too high, which was probably the wrong approach.\n\nI’d really appreciate feedback on how people usually handle this kind of scraping project. It’s my first time building something with this many requests, so I’m mostly trying to understand whether the overall setup makes sense and whether the scraping / network logic is coherent.\n\nWould really appreciate advice, thanks!\n\nPS: There is no monthly or weekly thread, that's why the repost.","score":2,"upvotes":2,"upvoteRatio":0.67,"commentCount":11,"createdAt":"2026-03-13T14:15:19.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1sr22xx","name":"t3_1sr22xx","title":"POV: Webscraping for training data","author":"Ready_Row3788","subreddit":"WeLoveYouCaine","subredditPrefixedName":"r/WeLoveYouCaine","url":"https://www.reddit.com/r/WeLoveYouCaine/comments/1sr22xx/pov_webscraping_for_training_data/","permalink":"https://www.reddit.com/r/WeLoveYouCaine/comments/1sr22xx/pov_webscraping_for_training_data/","bodyText":null,"score":36,"upvotes":36,"upvoteRatio":0.98,"commentCount":2,"createdAt":"2026-04-20T20:33:08.000Z","isVideo":false,"subredditSubscriberCount":11580},{"id":"1tb0xrq","name":"t3_1tb0xrq","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1tb0xrq/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1tb0xrq/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":4,"upvotes":4,"upvoteRatio":0.84,"commentCount":2,"createdAt":"2026-05-12T13:00:35.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1t900dz","name":"t3_1t900dz","title":"Guide me how shall I learn webscraping","author":"Positive-Union-3868","subreddit":"thewebscrapingclub","subredditPrefixedName":"r/thewebscrapingclub","url":"https://www.reddit.com/r/thewebscrapingclub/comments/1t900dz/guide_me_how_shall_i_learn_webscraping/","permalink":"https://www.reddit.com/r/thewebscrapingclub/comments/1t900dz/guide_me_how_shall_i_learn_webscraping/","bodyText":null,"score":5,"upvotes":5,"upvoteRatio":1,"commentCount":2,"createdAt":"2026-05-10T07:19:34.000Z","isVideo":false,"subredditSubscriberCount":1065},{"id":"1srmz1n","name":"t3_1srmz1n","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1srmz1n/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1srmz1n/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":11,"upvotes":11,"upvoteRatio":1,"commentCount":4,"createdAt":"2026-04-21T13:00:36.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1pc2ow0","name":"t3_1pc2ow0","title":"Built fast webscraper","author":"New_Needleworker7830","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1pc2ow0/built_fast_webscraper/","permalink":"https://www.reddit.com/r/webscraping/comments/1pc2ow0/built_fast_webscraper/","bodyText":"It’s not about anti-bot techniques .. it’s about raw speed.  \nThe system is designed for large scale crawling, thousands of websites at once.  \nIt uses multiprocessing and multithreading, wth optimized internal queues to avoid bottlenecks.  \nI reached **32,000 pages per minute** on a 32-CPU machine (Scrapy: **7,000**).\n\nIt supports robots.txt, sitemaps, and standard spider techniques.  \nAll network parameters are stored in JSON.  \nRetry mechanism that switches between **httpx** and **curl**.\n\nI’m also integrating SeleniumBase, but multiprocessing is still giving me issues with that.\n\nGiven a python domain list doms = \\[\"a.com\", \"b.com\"...\\]  \nyou can begin scraping just like\n\n`from ispider_core import ISpider`  \n`with ISpider(domains=doms) as spider:`  \n`spider.run()`\n\nI'm maintaining it on pypi too:  \n`pip install ispider`\n\nGithub opensource: [https://github.com/danruggi/ispider](https://github.com/danruggi/ispider)","score":25,"upvotes":25,"upvoteRatio":0.88,"commentCount":20,"createdAt":"2025-12-02T07:51:57.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1t4es34","name":"t3_1t4es34","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1t4es34/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1t4es34/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":7,"upvotes":7,"upvoteRatio":0.9,"commentCount":2,"createdAt":"2026-05-05T13:00:38.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1qod78a","name":"t3_1qod78a","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1qod78a/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1qod78a/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":9,"upvotes":9,"upvoteRatio":1,"commentCount":15,"createdAt":"2026-01-27T13:01:04.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1m30ydj","name":"t3_1m30ydj","title":"Restart your webscraping journey, what would you do differently?","author":"Acceptable-Fox590","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1m30ydj/restart_your_webscraping_journey_what_would_you/","permalink":"https://www.reddit.com/r/webscraping/comments/1m30ydj/restart_your_webscraping_journey_what_would_you/","bodyText":"I am quite new in the game, but have seen the insane potential that webscraping offers. If you had to restart from the beginning, what do you wish you knew then that you know now? What tools would you use? What strategies? I am a professor, and I am trying to learn this to educate students on how to utilize this both for their business and studies. \n\n  \nAll the best, Adam","score":25,"upvotes":25,"upvoteRatio":0.92,"commentCount":36,"createdAt":"2025-07-18T12:25:46.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1sy0r80","name":"t3_1sy0r80","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1sy0r80/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1sy0r80/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":4,"upvotes":4,"upvoteRatio":0.83,"commentCount":2,"createdAt":"2026-04-28T13:00:34.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1rhvsr0","name":"t3_1rhvsr0","title":"webscraping websites for arbitrage","author":"misterno123","subreddit":"FulfillmentByAmazon","subredditPrefixedName":"r/FulfillmentByAmazon","url":"https://www.reddit.com/r/FulfillmentByAmazon/comments/1rhvsr0/webscraping_websites_for_arbitrage/","permalink":"https://www.reddit.com/r/FulfillmentByAmazon/comments/1rhvsr0/webscraping_websites_for_arbitrage/","bodyText":"Currently I am running a webscraper from home using data center proxies. I scrape only the ASINs in websites where same item has low rank on amazon. It is scraping sites with items for sale in bulk and I buy them on the cheap and sell them on amazon as new. This is just 1 item so to expand , I tried this with electronics and auto parts but most sites asking for physical location to buy in bulk\n\nIt does not have to be on amazon I can sell on ebay also, but I am looking for websites to buy in bulk. Any ideas? or is there a better subreddit to ask this question?","score":0,"upvotes":0,"upvoteRatio":0.5,"commentCount":10,"createdAt":"2026-03-01T12:12:35.000Z","isVideo":false,"subredditSubscriberCount":138042},{"id":"1rpj8t0","name":"t3_1rpj8t0","title":"Webscraping","author":"iceonme1912","subreddit":"DadosBrasil","subredditPrefixedName":"r/DadosBrasil","url":"https://www.reddit.com/r/DadosBrasil/comments/1rpj8t0/webscraping/","permalink":"https://www.reddit.com/r/DadosBrasil/comments/1rpj8t0/webscraping/","bodyText":"Fala galera, boa noite, to querendo aprender web scraping com Python, quais bibliotecas eu uso e por onde eu estudo esse assunto ? Tem alguma recomendação? Abraços !","score":5,"upvotes":5,"upvoteRatio":1,"commentCount":8,"createdAt":"2026-03-10T01:22:27.000Z","isVideo":false,"subredditSubscriberCount":8311},{"id":"1r75el6","name":"t3_1r75el6","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1r75el6/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1r75el6/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":9,"upvotes":9,"upvoteRatio":0.86,"commentCount":10,"createdAt":"2026-02-17T13:02:04.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1ohh5s3","name":"t3_1ohh5s3","title":"Caut oameni pasionati de webscrapping","author":"Early-Employ5597","subreddit":"programare","subredditPrefixedName":"r/programare","url":"https://www.reddit.com/r/programare/comments/1ohh5s3/caut_oameni_pasionati_de_webscrapping/","permalink":"https://www.reddit.com/r/programare/comments/1ohh5s3/caut_oameni_pasionati_de_webscrapping/","bodyText":"Dupa cum spune si titlul caut oameni descurcareti cu interese comune pentru un grup de tg/discord privat in care sa discutam, ne ajutam reciproc etc, poate sa punem in practica anumite proiecte. Caut oameni ce au propriile site-uri/apps cu traffic. Eu am vreo 80 de site uri din diferite domenii facute de a lungul anilor. De la porn la screener pentru stock uri la site uri de statistici luate de pe site urile govs.\n\n  \nle: lucrez singur de ani de zile si sunt satul sa n am cu cine sa schmb o vorba sau o idee. de a lungul timpului am cunoscut doar 2 persoane pe nisa asta.","score":22,"upvotes":22,"upvoteRatio":0.74,"commentCount":23,"createdAt":"2025-10-27T15:16:29.000Z","isVideo":false,"subredditSubscriberCount":111622},{"id":"1rdfm7a","name":"t3_1rdfm7a","title":"Weekly Webscrapers - Hiring, FAQs, etc","author":"AutoModerator","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1rdfm7a/weekly_webscrapers_hiring_faqs_etc/","permalink":"https://www.reddit.com/r/webscraping/comments/1rdfm7a/weekly_webscrapers_hiring_faqs_etc/","bodyText":"**Welcome to the weekly discussion thread!**\n\nThis is a space for web scrapers of all skill levels—whether you're a seasoned expert or just starting out. Here, you can discuss all things scraping, including:\n\n* Hiring and job opportunities\n* Industry news, trends, and insights\n* Frequently asked questions, like \"How do I scrape LinkedIn?\"\n* Marketing and monetization tips\n\nIf you're new to web scraping, make sure to check out the [Beginners Guide](https://webscraping.fyi) 🌱\n\nCommercial products may be mentioned in replies. If you want to promote your own products and services, continue to use the [monthly thread](https://reddit.com/r/webscraping/about/sticky?num=1)","score":5,"upvotes":5,"upvoteRatio":0.86,"commentCount":9,"createdAt":"2026-02-24T13:01:04.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1dxo99o","name":"t3_1dxo99o","title":"Self-hosted Webscraper","author":"bluesanoo","subreddit":"selfhosted","subredditPrefixedName":"r/selfhosted","url":"https://www.reddit.com/r/selfhosted/comments/1dxo99o/selfhosted_webscraper/","permalink":"https://www.reddit.com/r/selfhosted/comments/1dxo99o/selfhosted_webscraper/","bodyText":"I have created a self-hosted webscraper, \"Scraperr\". This is the first one I have seen on here and its pretty simple, but I could add more features to it in the future.   \n[https://github.com/jaypyles/Scraperr](https://github.com/jaypyles/Scraperr)\n\nCurrently you can:   \n- Scrape sites using xpath elements  \n- Download and view results of scrape jobs  \n- Rerun scrape jobs\n\nFeel free to leave suggestions","score":122,"upvotes":122,"upvoteRatio":0.96,"commentCount":55,"createdAt":"2024-07-07T19:11:25.000Z","isVideo":false,"subredditSubscriberCount":766144},{"id":"1swxrpl","name":"t3_1swxrpl","title":"[HIRING] Part-time webscraper, remote, 20h/week","author":"betherosports","subreddit":"webscraping","subredditPrefixedName":"r/webscraping","url":"https://www.reddit.com/r/webscraping/comments/1swxrpl/hiring_parttime_webscraper_remote_20hweek/","permalink":"https://www.reddit.com/r/webscraping/comments/1swxrpl/hiring_parttime_webscraper_remote_20hweek/","bodyText":"Hey everyone,\n\nWe're [Bet Hero](https://betherosports.com/), a sports betting analytics company that scrapes sportsbooks in real time to flag mispriced odds before the books correct them.\n\n# The work\n\nMost of the job is keeping scrapers alive. Books change their website, update endpoints, geo-block proxies, etc. You diagnose, fix, move on. Plus adding new books (\\~400 references to copy from) and fighting anti-bot: Cloudflare, Akamai, Datadome, TLS fingerprinting, plus books that rolled their own.\n\n# What we want\n\nA couple of years scraping things that don't want to be scraped. Solid Python. You've fought antibots and won. **No headless browsers.** If Playwright is your default tool, this isn't the role.\n\nNice-to-haves: Rust, Go, K8s, Ray and sports betting knowledge.\n\n# Interested?\n\nShoot us a DM :)","score":11,"upvotes":11,"upvoteRatio":0.68,"commentCount":0,"createdAt":"2026-04-27T08:36:00.000Z","isVideo":false,"subredditSubscriberCount":94589},{"id":"1agv0xn","name":"t3_1agv0xn","title":"Is Webscraping a work of a data scientist?","author":"medyosuper","subreddit":"datascience","subredditPrefixedName":"r/datascience","url":"https://www.reddit.com/r/datascience/comments/1agv0xn/is_webscraping_a_work_of_a_data_scientist/","permalink":"https://www.reddit.com/r/datascience/comments/1agv0xn/is_webscraping_a_work_of_a_data_scientist/","bodyText":"I used to believe that the work of a data scientist is from getting the data to creating models. But if solely web scraping, is that a job for data scientist or are there any discipline to better do that job?","score":80,"upvotes":80,"upvoteRatio":0.88,"commentCount":78,"createdAt":"2024-02-02T04:19:29.000Z","isVideo":false,"subredditSubscriberCount":2744518}],"totalResults":25,"page":{"nextCursor":"t3_1agv0xn","hasMore":true}},"meta":{"requestId":"req_01example_page2","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/subreddits/search":{"get":{"tags":["Reddit"],"summary":"Search Reddit subreddit","description":"Search posts within a subreddit.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.page.hasMore` and `data.page.nextCursor` for pagination rather than inferring completion from `data.totalResults` 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":256,"description":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Searches posts within this subreddit."},"required":true,"description":"Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Searches posts within this subreddit.","name":"subreddit","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":512,"description":"Search text to match against public subreddit posts."},"required":false,"description":"Search text to match against public subreddit posts.","name":"query","in":"query"},{"schema":{"type":"string","enum":["relevance","hot","top","new","comments"],"description":"Optional sort order for search results. Defaults to relevance when omitted."},"required":false,"description":"Optional sort order for search results. Defaults to relevance when omitted.","name":"sort","in":"query"},{"schema":{"type":"string","enum":["all","year","month","week","day","hour"],"description":"Optional time range filter for search results. Defaults to all when omitted."},"required":false,"description":"Optional time range filter for search results. Defaults to all when omitted.","name":"timeframe","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":"Search results for the requested subreddit.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"subreddit":{"type":"string","description":"Subreddit name evaluated for this response."},"query":{"type":"string","nullable":true,"description":"Search query evaluated for this response."},"sort":{"type":"string","enum":["relevance","hot","top","new","comments"],"description":"Sort order applied for this response."},"timeframe":{"type":"string","enum":["all","year","month","week","day","hour"],"description":"Time range filter applied for this response."},"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable post identifier."},"postId":{"type":"string","minLength":1,"description":"Post identifier when available."},"title":{"type":"string","minLength":1,"description":"Post title."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this post."},"permalink":{"type":"string","minLength":1,"description":"Permalink path or URL for this post."},"nsfw":{"type":"boolean","description":"Whether the post is marked as adult content."},"spoiler":{"type":"boolean","description":"Whether the post is marked as a spoiler."},"crosspost":{"type":"boolean","description":"Whether the post is a crosspost."},"subreddit":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Subreddit identifier when available."},"name":{"type":"string","nullable":true,"description":"Subreddit name when available."},"nsfw":{"type":"boolean","nullable":true,"description":"Whether the subreddit is marked as adult content."},"quarantined":{"type":"boolean","nullable":true,"description":"Whether the subreddit is quarantined."},"iconUrl":{"type":"string","nullable":true,"description":"Subreddit icon URL when available."},"bannerUrl":{"type":"string","nullable":true,"description":"Subreddit banner URL when available."},"description":{"type":"string","nullable":true,"description":"Subreddit description when available."},"weeklyVisitors":{"type":"integer","nullable":true,"minimum":0,"description":"Approximate weekly visitors when available."},"weeklyContributions":{"type":"integer","nullable":true,"minimum":0,"description":"Approximate weekly contributions when available."}},"required":["id","name","nsfw","quarantined","iconUrl","bannerUrl","description","weeklyVisitors","weeklyContributions"],"description":"Subreddit metadata when available."},"metrics":{"type":"object","properties":{"votes":{"type":"integer","nullable":true,"minimum":0,"description":"Vote count when available."},"comments":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."}},"required":["votes","comments"],"description":"Engagement metrics for this post."},"createdAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"thumbnailBlurred":{"type":"boolean","nullable":true,"description":"Whether the thumbnail is blurred."},"position":{"type":"integer","nullable":true,"minimum":0,"description":"Position of this row in the current result page."},"relativePosition":{"type":"integer","nullable":true,"minimum":0,"description":"Relative position of this row in the current result page."}},"required":["id","postId","title","url","permalink","nsfw","spoiler","crosspost","subreddit","metrics","createdAt","thumbnailUrl","thumbnailBlurred","position","relativePosition"],"description":"A post returned from a subreddit search."},"description":"Matching posts for the search."},"totalResults":{"type":"integer","minimum":0,"description":"Number of post rows returned in this response."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["subreddit","query","sort","timeframe","posts","totalResults","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":{"subreddit":"Fitness","query":"push ups","sort":"relevance","timeframe":"all","posts":[{"id":"t3_3c3vkn","postId":"t3_3c3vkn","title":"Here's a video I made to help you do PUSH UPS properly","url":"https://www.reddit.com/r/Fitness/comments/3c3vkn/heres_a_video_i_made_to_help_you_do_push_ups/","permalink":"/r/Fitness/comments/3c3vkn/heres_a_video_i_made_to_help_you_do_push_ups/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":9112,"comments":684},"createdAt":"2015-07-04T14:53:20.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":0,"relativePosition":0},{"id":"t3_a4r12k","postId":"t3_a4r12k","title":"Review of Recent Fitness/Nutrition Studies: Protein and Push-Ups, Intermittent Fasting, Omega-3 Fatty Acids & More","url":"https://www.reddit.com/r/Fitness/comments/a4r12k/review_of_recent_fitnessnutrition_studies_protein/","permalink":"/r/Fitness/comments/a4r12k/review_of_recent_fitnessnutrition_studies_protein/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4797,"comments":254},"createdAt":"2018-12-10T01:37:24.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":1,"relativePosition":1},{"id":"t3_237z1o","postId":"t3_237z1o","title":"Girl does push-ups for 100 days (video time lapse) (xpost r/getmotivated)","url":"https://www.reddit.com/r/Fitness/comments/237z1o/girl_does_pushups_for_100_days_video_time_lapse/","permalink":"/r/Fitness/comments/237z1o/girl_does_pushups_for_100_days_video_time_lapse/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":2670,"comments":832},"createdAt":"2014-04-16T22:43:02.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":2,"relativePosition":2},{"id":"t3_40dbfq","postId":"t3_40dbfq","title":"Is there any point doing a 100 push ups a day in sets of 25 ?","url":"https://www.reddit.com/r/Fitness/comments/40dbfq/is_there_any_point_doing_a_100_push_ups_a_day_in/","permalink":"/r/Fitness/comments/40dbfq/is_there_any_point_doing_a_100_push_ups_a_day_in/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1789,"comments":903},"createdAt":"2016-01-10T21:30:07.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":3,"relativePosition":3},{"id":"t3_992kw9","postId":"t3_992kw9","title":"How far can push-ups and a pull-up bar take you for putting on some muscle?","url":"https://www.reddit.com/r/Fitness/comments/992kw9/how_far_can_pushups_and_a_pullup_bar_take_you_for/","permalink":"/r/Fitness/comments/992kw9/how_far_can_pushups_and_a_pullup_bar_take_you_for/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1587,"comments":592},"createdAt":"2018-08-21T12:00:08.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":4,"relativePosition":4},{"id":"t3_32cksu","postId":"t3_32cksu","title":"How much will push-ups help my chest?","url":"https://www.reddit.com/r/Fitness/comments/32cksu/how_much_will_pushups_help_my_chest/","permalink":"/r/Fitness/comments/32cksu/how_much_will_pushups_help_my_chest/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":2003,"comments":528},"createdAt":"2015-04-12T17:25:19.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":5,"relativePosition":5},{"id":"t3_2z1nuu","postId":"t3_2z1nuu","title":"If I do 1 set of 20 push-ups, or 2 sets of 10 push-ups, do I build the same amount of muscle either way?","url":"https://www.reddit.com/r/Fitness/comments/2z1nuu/if_i_do_1_set_of_20_pushups_or_2_sets_of_10/","permalink":"/r/Fitness/comments/2z1nuu/if_i_do_1_set_of_20_pushups_or_2_sets_of_10/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1872,"comments":508},"createdAt":"2015-03-14T19:10:55.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":6,"relativePosition":6},{"id":"t3_2ogqxy","postId":"t3_2ogqxy","title":"Where does a 17 year old who can't do more than 2 push-ups start?","url":"https://www.reddit.com/r/Fitness/comments/2ogqxy/where_does_a_17_year_old_who_cant_do_more_than_2/","permalink":"/r/Fitness/comments/2ogqxy/where_does_a_17_year_old_who_cant_do_more_than_2/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1426,"comments":868},"createdAt":"2014-12-06T15:37:57.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":7,"relativePosition":7},{"id":"t3_5wvmeb","postId":"t3_5wvmeb","title":"Archer Push Ups are a great chest and triceps exercise, so i've made a tutorial for you. You'll learn them today!","url":"https://www.reddit.com/r/Fitness/comments/5wvmeb/archer_push_ups_are_a_great_chest_and_triceps/","permalink":"/r/Fitness/comments/5wvmeb/archer_push_ups_are_a_great_chest_and_triceps/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":2920,"comments":213},"createdAt":"2017-03-01T13:04:53.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":8,"relativePosition":8},{"id":"t3_6x3nml","postId":"t3_6x3nml","title":"Push-ups for a big chest?","url":"https://www.reddit.com/r/Fitness/comments/6x3nml/pushups_for_a_big_chest/","permalink":"/r/Fitness/comments/6x3nml/pushups_for_a_big_chest/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1435,"comments":446},"createdAt":"2017-08-31T00:59:24.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":9,"relativePosition":9},{"id":"t3_9oks6z","postId":"t3_9oks6z","title":"What Effect does doing just 50 Situps and 50 Push-ups have?","url":"https://www.reddit.com/r/Fitness/comments/9oks6z/what_effect_does_doing_just_50_situps_and_50/","permalink":"/r/Fitness/comments/9oks6z/what_effect_does_doing_just_50_situps_and_50/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1055,"comments":536},"createdAt":"2018-10-16T05:47:36.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":10,"relativePosition":10},{"id":"t3_2hiv3r","postId":"t3_2hiv3r","title":"100 push-ups for Jack","url":"https://www.reddit.com/r/Fitness/comments/2hiv3r/100_pushups_for_jack/","permalink":"/r/Fitness/comments/2hiv3r/100_pushups_for_jack/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1354,"comments":305},"createdAt":"2014-09-26T12:57:46.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":11,"relativePosition":11},{"id":"t3_au7o4g","postId":"t3_au7o4g","title":"Review of Recent Fitness Studies V: Exercise Tempo, Push-Ups & Eccentrics","url":"https://www.reddit.com/r/Fitness/comments/au7o4g/review_of_recent_fitness_studies_v_exercise_tempo/","permalink":"/r/Fitness/comments/au7o4g/review_of_recent_fitness_studies_v_exercise_tempo/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1743,"comments":160},"createdAt":"2019-02-24T12:49:50.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":12,"relativePosition":12},{"id":"t3_9x0r10","postId":"t3_9x0r10","title":"Push-ups are getting harder.","url":"https://www.reddit.com/r/Fitness/comments/9x0r10/pushups_are_getting_harder/","permalink":"/r/Fitness/comments/9x0r10/pushups_are_getting_harder/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1072,"comments":157},"createdAt":"2018-11-14T14:53:00.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":13,"relativePosition":13},{"id":"t3_2wain0","postId":"t3_2wain0","title":"Instead of just hammering out a bunch push-ups to impress myself, I started doing them very slow and controlled, noticed my abs engaging.","url":"https://www.reddit.com/r/Fitness/comments/2wain0/instead_of_just_hammering_out_a_bunch_pushups_to/","permalink":"/r/Fitness/comments/2wain0/instead_of_just_hammering_out_a_bunch_pushups_to/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1084,"comments":182},"createdAt":"2015-02-18T07:45:31.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":14,"relativePosition":14},{"id":"t3_cqskaq","postId":"t3_cqskaq","title":"Learning proper push-up form in /r/eruditeclub. We'd love a hand from you guys.","url":"https://www.reddit.com/r/Fitness/comments/cqskaq/learning_proper_pushup_form_in_reruditeclub_wed/","permalink":"/r/Fitness/comments/cqskaq/learning_proper_pushup_form_in_reruditeclub_wed/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1287,"comments":83},"createdAt":"2019-08-15T16:56:22.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":15,"relativePosition":15},{"id":"t3_3ulh9f","postId":"t3_3ulh9f","title":"Remember Yaad's Awesome Handstand Push Up Video Tutorial? Well, I created a detailed outline of it, complete with weekly schedules for every stage so you know EXACTLY what you need to do each day!","url":"https://www.reddit.com/r/Fitness/comments/3ulh9f/remember_yaads_awesome_handstand_push_up_video/","permalink":"/r/Fitness/comments/3ulh9f/remember_yaads_awesome_handstand_push_up_video/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1598,"comments":74},"createdAt":"2015-11-28T16:01:19.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":16,"relativePosition":16},{"id":"t3_4yphv3","postId":"t3_4yphv3","title":"Why do I find push ups so much harder than pull ups?","url":"https://www.reddit.com/r/Fitness/comments/4yphv3/why_do_i_find_push_ups_so_much_harder_than_pull/","permalink":"/r/Fitness/comments/4yphv3/why_do_i_find_push_ups_so_much_harder_than_pull/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":326,"comments":302},"createdAt":"2016-08-20T15:16:06.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":17,"relativePosition":17},{"id":"t3_3ltm0o","postId":"t3_3ltm0o","title":"Check out the most thorough video tutorial ever created for achieving Freestanding Handstand Push-Ups! It's chock full of progression exercises, proper form cues and the programming to help you achieve them with confidence!","url":"https://www.reddit.com/r/Fitness/comments/3ltm0o/check_out_the_most_thorough_video_tutorial_ever/","permalink":"/r/Fitness/comments/3ltm0o/check_out_the_most_thorough_video_tutorial_ever/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1465,"comments":62},"createdAt":"2015-09-21T16:31:17.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":18,"relativePosition":18},{"id":"t3_471g48","postId":"t3_471g48","title":"I have two weeks to be able to do 47 push ups. Is it possible","url":"https://www.reddit.com/r/Fitness/comments/471g48/i_have_two_weeks_to_be_able_to_do_47_push_ups_is/","permalink":"/r/Fitness/comments/471g48/i_have_two_weeks_to_be_able_to_do_47_push_ups_is/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":153,"comments":225},"createdAt":"2016-02-22T16:00:52.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":19,"relativePosition":19},{"id":"t3_4pl3yc","postId":"t3_4pl3yc","title":"Things I Wish I Knew 8 Years Ago","url":"https://www.reddit.com/r/Fitness/comments/4pl3yc/things_i_wish_i_knew_8_years_ago/","permalink":"/r/Fitness/comments/4pl3yc/things_i_wish_i_knew_8_years_ago/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":19488,"comments":653},"createdAt":"2016-06-24T04:52:45.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":20,"relativePosition":20},{"id":"t3_8ogzss","postId":"t3_8ogzss","title":"26/M/5’10 - How Fitness Transformed me from an Obese, Narrow-Minded Gamer into a Wildly Different Person","url":"https://www.reddit.com/r/Fitness/comments/8ogzss/26m510_how_fitness_transformed_me_from_an_obese/","permalink":"/r/Fitness/comments/8ogzss/26m510_how_fitness_transformed_me_from_an_obese/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":10030,"comments":644},"createdAt":"2018-06-04T12:48:47.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":21,"relativePosition":21},{"id":"t3_7nrqkz","postId":"t3_7nrqkz","title":"Finally hit 213lbs lost, then got under 200lbs, then 244 square inches of skin was removed, 4 months of recovery. It's a year I won't ever forget.","url":"https://www.reddit.com/r/Fitness/comments/7nrqkz/finally_hit_213lbs_lost_then_got_under_200lbs/","permalink":"/r/Fitness/comments/7nrqkz/finally_hit_213lbs_lost_then_got_under_200lbs/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":12986,"comments":539},"createdAt":"2018-01-03T03:01:21.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":22,"relativePosition":22},{"id":"t3_2ny75f","postId":"t3_2ny75f","title":"This week, I turn 30. As a personal celebration, here's my two year transformation from 220-157 pounds.","url":"https://www.reddit.com/r/Fitness/comments/2ny75f/this_week_i_turn_30_as_a_personal_celebration/","permalink":"/r/Fitness/comments/2ny75f/this_week_i_turn_30_as_a_personal_celebration/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":6871,"comments":1119},"createdAt":"2014-12-01T16:12:01.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":23,"relativePosition":23},{"id":"t3_84rceg","postId":"t3_84rceg","title":"2 Year Transformation: 20 Yo College Student from Freshman Year to Junior year (pics)","url":"https://www.reddit.com/r/Fitness/comments/84rceg/2_year_transformation_20_yo_college_student_from/","permalink":"/r/Fitness/comments/84rceg/2_year_transformation_20_yo_college_student_from/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":5927,"comments":715},"createdAt":"2018-03-16T00:14:42.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":24,"relativePosition":24}],"totalResults":25,"page":{"nextCursor":"t3_84rceg","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"subreddit":"Fitness","query":"zzzzzzzzzzzzzzzzzzzz_no_match_99999","sort":"relevance","timeframe":"all","posts":[],"totalResults":0,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"subreddit":"Fitness","query":"push ups","sort":"relevance","timeframe":"all","posts":[{"id":"t3_4gc6p8","postId":"t3_4gc6p8","title":"30 Kinds of Push-Ups - Including Basic, Plyometric, Handstand/Vertical Pushing Based, Ring Based and Other Variations!","url":"https://www.reddit.com/r/Fitness/comments/4gc6p8/30_kinds_of_pushups_including_basic_plyometric/","permalink":"/r/Fitness/comments/4gc6p8/30_kinds_of_pushups_including_basic_plyometric/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":742,"comments":51},"createdAt":"2016-04-25T07:00:05.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":0,"relativePosition":0},{"id":"t3_bze0g8","postId":"t3_bze0g8","title":"Weight Loss Update: 438 lbs to 260 lbs. ~ 180 pounds down in 1 year naturally with diet and exercise!","url":"https://www.reddit.com/r/Fitness/comments/bze0g8/weight_loss_update_438_lbs_to_260_lbs_180_pounds/","permalink":"/r/Fitness/comments/bze0g8/weight_loss_update_438_lbs_to_260_lbs_180_pounds/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":7836,"comments":439},"createdAt":"2019-06-11T15:38:07.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":1,"relativePosition":1},{"id":"t3_8406h6","postId":"t3_8406h6","title":"Ok, so you're supposed to balance out your pushing and pulling right? Opposite Vertical Press is Pull-Ups. Opposite Bench Press/Push-Ups is Horizontal Row. Opposite Dips is...?","url":"https://www.reddit.com/r/Fitness/comments/8406h6/ok_so_youre_supposed_to_balance_out_your_pushing/","permalink":"/r/Fitness/comments/8406h6/ok_so_youre_supposed_to_balance_out_your_pushing/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":227,"comments":115},"createdAt":"2018-03-13T00:49:57.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":2,"relativePosition":2},{"id":"t3_abwgs5","postId":"t3_abwgs5","title":"Each New Year I post here for those of you taking up swimming for improvement, exercise or weight management. This year I am sharing swimming secrets of long time swimmers like myself that you never see written elsewhere and no-one explains","url":"https://www.reddit.com/r/Fitness/comments/abwgs5/each_new_year_i_post_here_for_those_of_you_taking/","permalink":"/r/Fitness/comments/abwgs5/each_new_year_i_post_here_for_those_of_you_taking/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":6423,"comments":496},"createdAt":"2019-01-02T19:06:02.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":3,"relativePosition":3},{"id":"t3_bmp3q0","postId":"t3_bmp3q0","title":"My transformation after sobering up and working out in a small gym without real equipment: 6 month update","url":"https://www.reddit.com/r/Fitness/comments/bmp3q0/my_transformation_after_sobering_up_and_working/","permalink":"/r/Fitness/comments/bmp3q0/my_transformation_after_sobering_up_and_working/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":5915,"comments":496},"createdAt":"2019-05-09T20:51:16.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":4,"relativePosition":4},{"id":"t3_j8uo2","postId":"t3_j8uo2","title":"If you weigh 165lbs and do push ups, is that the equivalent of benching around that weight?","url":"https://www.reddit.com/r/Fitness/comments/j8uo2/if_you_weigh_165lbs_and_do_push_ups_is_that_the/","permalink":"/r/Fitness/comments/j8uo2/if_you_weigh_165lbs_and_do_push_ups_is_that_the/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":98,"comments":231},"createdAt":"2011-08-04T15:02:50.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":5,"relativePosition":5},{"id":"t3_3394cx","postId":"t3_3394cx","title":"Is it okay to do sit ups and push ups everyday?","url":"https://www.reddit.com/r/Fitness/comments/3394cx/is_it_okay_to_do_sit_ups_and_push_ups_everyday/","permalink":"/r/Fitness/comments/3394cx/is_it_okay_to_do_sit_ups_and_push_ups_everyday/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":184,"comments":148},"createdAt":"2015-04-20T17:10:11.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":6,"relativePosition":6},{"id":"t3_92bhaj","postId":"t3_92bhaj","title":"We over at r/flexibility created a new full-body stretching routine. Takes 30 minutes and we've included a follow-along video, cheat sheets and pictures of each exercise. Try it out!","url":"https://www.reddit.com/r/Fitness/comments/92bhaj/we_over_at_rflexibility_created_a_new_fullbody/","permalink":"/r/Fitness/comments/92bhaj/we_over_at_rflexibility_created_a_new_fullbody/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":14066,"comments":325},"createdAt":"2018-07-27T10:49:54.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":7,"relativePosition":7},{"id":"t3_5gpc6l","postId":"t3_5gpc6l","title":"My 2 yr. transformation 24y.o male.","url":"https://www.reddit.com/r/Fitness/comments/5gpc6l/my_2_yr_transformation_24yo_male/","permalink":"/r/Fitness/comments/5gpc6l/my_2_yr_transformation_24yo_male/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":5985,"comments":654},"createdAt":"2016-12-05T23:27:23.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":8,"relativePosition":8},{"id":"t3_bcvvsk","postId":"t3_bcvvsk","title":"Exercises for hugging strength?","url":"https://www.reddit.com/r/Fitness/comments/bcvvsk/exercises_for_hugging_strength/","permalink":"/r/Fitness/comments/bcvvsk/exercises_for_hugging_strength/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4535,"comments":597},"createdAt":"2019-04-13T22:07:51.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":9,"relativePosition":9},{"id":"t3_h9ewhw","postId":"t3_h9ewhw","title":"How to train while gaining/lose weight, why lean bulking sets you up for failure, and how I gain/lose without counting calories or macros","url":"https://www.reddit.com/r/Fitness/comments/h9ewhw/how_to_train_while_gaininglose_weight_why_lean/","permalink":"/r/Fitness/comments/h9ewhw/how_to_train_while_gaininglose_weight_why_lean/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":3218,"comments":709},"createdAt":"2020-06-15T11:58:03.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":10,"relativePosition":10},{"id":"t3_cwg1el","postId":"t3_cwg1el","title":"25/M/5'8\" 150lb to 172lb - My 4 year \"Powerbuilding\" Journey","url":"https://www.reddit.com/r/Fitness/comments/cwg1el/25m58_150lb_to_172lb_my_4_year_powerbuilding/","permalink":"/r/Fitness/comments/cwg1el/25m58_150lb_to_172lb_my_4_year_powerbuilding/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4710,"comments":516},"createdAt":"2019-08-28T04:46:46.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":11,"relativePosition":11},{"id":"t3_bu8b05","postId":"t3_bu8b05","title":"Can I get decently fit by just doing pull-ups, push-ups, planks, and squats?","url":"https://www.reddit.com/r/Fitness/comments/bu8b05/can_i_get_decently_fit_by_just_doing_pullups/","permalink":"/r/Fitness/comments/bu8b05/can_i_get_decently_fit_by_just_doing_pullups/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":202,"comments":95},"createdAt":"2019-05-29T01:11:22.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":12,"relativePosition":12},{"id":"t3_3awmhc","postId":"t3_3awmhc","title":"(27/M/170) Transormation WoW nerd to exercise nerd","url":"https://www.reddit.com/r/Fitness/comments/3awmhc/27m170_transormation_wow_nerd_to_exercise_nerd/","permalink":"/r/Fitness/comments/3awmhc/27m170_transormation_wow_nerd_to_exercise_nerd/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":3677,"comments":1401},"createdAt":"2015-06-24T02:24:25.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":13,"relativePosition":13},{"id":"t3_43vm7n","postId":"t3_43vm7n","title":"How far can push-ups and sit-ups take you?","url":"https://www.reddit.com/r/Fitness/comments/43vm7n/how_far_can_pushups_and_situps_take_you/","permalink":"/r/Fitness/comments/43vm7n/how_far_can_pushups_and_situps_take_you/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":182,"comments":119},"createdAt":"2016-02-02T18:45:34.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":14,"relativePosition":14},{"id":"t3_2zh7ah","postId":"t3_2zh7ah","title":"Chest 101: An Anatomical Guide to Training","url":"https://www.reddit.com/r/Fitness/comments/2zh7ah/chest_101_an_anatomical_guide_to_training/","permalink":"/r/Fitness/comments/2zh7ah/chest_101_an_anatomical_guide_to_training/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":5081,"comments":721},"createdAt":"2015-03-18T15:48:19.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":15,"relativePosition":15},{"id":"t3_6mvakz","postId":"t3_6mvakz","title":"From fat to fit.","url":"https://www.reddit.com/r/Fitness/comments/6mvakz/from_fat_to_fit/","permalink":"/r/Fitness/comments/6mvakz/from_fat_to_fit/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":5761,"comments":446},"createdAt":"2017-07-12T17:01:42.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":16,"relativePosition":16},{"id":"t3_c0ga1d","postId":"t3_c0ga1d","title":"M 5'9\" 185 -> 190, 13 month transformation","url":"https://www.reddit.com/r/Fitness/comments/c0ga1d/m_59_185_190_13_month_transformation/","permalink":"/r/Fitness/comments/c0ga1d/m_59_185_190_13_month_transformation/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":3697,"comments":524},"createdAt":"2019-06-14T05:20:36.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":17,"relativePosition":17},{"id":"t3_1zjnc7","postId":"t3_1zjnc7","title":"If you want to get big, eat big. Really big.","url":"https://www.reddit.com/r/Fitness/comments/1zjnc7/if_you_want_to_get_big_eat_big_really_big/","permalink":"/r/Fitness/comments/1zjnc7/if_you_want_to_get_big_eat_big_really_big/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4614,"comments":788},"createdAt":"2014-03-04T17:38:08.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":18,"relativePosition":18},{"id":"t3_3yssrf","postId":"t3_3yssrf","title":"My 2016 100,000 push-up challenge","url":"https://www.reddit.com/r/Fitness/comments/3yssrf/my_2016_100000_pushup_challenge/","permalink":"/r/Fitness/comments/3yssrf/my_2016_100000_pushup_challenge/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":92,"comments":152},"createdAt":"2015-12-30T16:40:15.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":19,"relativePosition":19},{"id":"t3_yaw8qa","postId":"t3_yaw8qa","title":"No Rest Days","url":"https://www.reddit.com/r/Fitness/comments/yaw8qa/no_rest_days/","permalink":"/r/Fitness/comments/yaw8qa/no_rest_days/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":1590,"comments":667},"createdAt":"2022-10-22T19:23:48.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":20,"relativePosition":20},{"id":"t3_2r1dzs","postId":"t3_2r1dzs","title":"[Progress] My 4 Month Transformation, 19 year old male. Hope this inspires you!","url":"https://www.reddit.com/r/Fitness/comments/2r1dzs/progress_my_4_month_transformation_19_year_old/","permalink":"/r/Fitness/comments/2r1dzs/progress_my_4_month_transformation_19_year_old/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4455,"comments":696},"createdAt":"2015-01-01T21:40:19.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":21,"relativePosition":21},{"id":"t3_9r59vs","postId":"t3_9r59vs","title":"Advice on my push-up form?","url":"https://www.reddit.com/r/Fitness/comments/9r59vs/advice_on_my_pushup_form/","permalink":"/r/Fitness/comments/9r59vs/advice_on_my_pushup_form/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":170,"comments":92},"createdAt":"2018-10-25T00:17:53.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":22,"relativePosition":22},{"id":"t3_sb7tbh","postId":"t3_sb7tbh","title":"1,000 Workouts Without a Rest Day","url":"https://www.reddit.com/r/Fitness/comments/sb7tbh/1000_workouts_without_a_rest_day/","permalink":"/r/Fitness/comments/sb7tbh/1000_workouts_without_a_rest_day/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":2699,"comments":378},"createdAt":"2022-01-23T23:58:53.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":23,"relativePosition":23},{"id":"t3_8jrdsm","postId":"t3_8jrdsm","title":"Fellow introverts, how did you convince yourself to go to a gym?","url":"https://www.reddit.com/r/Fitness/comments/8jrdsm/fellow_introverts_how_did_you_convince_yourself/","permalink":"/r/Fitness/comments/8jrdsm/fellow_introverts_how_did_you_convince_yourself/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qhx4","name":"Fitness","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":2411,"comments":1368},"createdAt":"2018-05-16T02:17:33.000Z","thumbnailUrl":null,"thumbnailBlurred":false,"position":24,"relativePosition":24}],"totalResults":25,"page":{"nextCursor":"t3_8jrdsm","hasMore":true}},"meta":{"requestId":"req_01example_paginated","creditsCharged":1,"version":"v1"}}},"withThumbnails":{"value":{"data":{"subreddit":"pics","query":"cat","sort":"relevance","timeframe":"all","posts":[{"id":"t3_1rbyffx","postId":"t3_1rbyffx","title":"[OC] One of Ernest Hemingway’s polydactyl cats ignoring museum rules to curl up in his bed","url":"https://www.reddit.com/gallery/1rbyffx","permalink":"/r/pics/comments/1rbyffx/oc_one_of_ernest_hemingways_polydactyl_cats/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":36578,"comments":608},"createdAt":"2026-02-22T21:35:47.000Z","thumbnailUrl":"https://preview.redd.it/wcyvtm1l74lg1.jpg?width=140&height=140&crop=1:1,smart&auto=webp&s=b65fbb68f6c3e3a9c5f9275ce760372fc3981b9e","thumbnailBlurred":false,"position":0,"relativePosition":0},{"id":"t3_1rgdxt7","postId":"t3_1rgdxt7","title":"[OC] My cat does this anytime I leave any bag and then walks around like this","url":"https://i.redd.it/n1zolprpt2mg1.jpeg","permalink":"/r/pics/comments/1rgdxt7/oc_my_cat_does_this_anytime_i_leave_any_bag_and/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":15142,"comments":418},"createdAt":"2026-02-27T18:00:15.000Z","thumbnailUrl":"https://preview.redd.it/n1zolprpt2mg1.jpeg?width=140&height=105&auto=webp&s=02645d98ae1c34fa72f43b9b0f1aa739e811c8f0","thumbnailBlurred":false,"position":1,"relativePosition":1},{"id":"t3_1tc2m16","postId":"t3_1tc2m16","title":"My client asked me to paint her elderly cat in the place he would dream about(OC)","url":"https://i.redd.it/752pxhek8x0h1.jpeg","permalink":"/r/pics/comments/1tc2m16/my_client_asked_me_to_paint_her_elderly_cat_in/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":9731,"comments":182},"createdAt":"2026-05-13T15:14:50.000Z","thumbnailUrl":"https://preview.redd.it/752pxhek8x0h1.jpeg?width=140&height=140&crop=1:1,smart&auto=webp&s=8249d8dc21a0212a8a23fe6e6fcaa5ab5286340b","thumbnailBlurred":false,"position":2,"relativePosition":2},{"id":"t3_1sjb6ws","postId":"t3_1sjb6ws","title":"[OC] This cat I photographed while drunk in Amsterdam 12 years ago.","url":"https://i.redd.it/ypwbevxxnqug1.jpeg","permalink":"/r/pics/comments/1sjb6ws/oc_this_cat_i_photographed_while_drunk_in/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":27757,"comments":166},"createdAt":"2026-04-12T10:44:10.000Z","thumbnailUrl":"https://preview.redd.it/ypwbevxxnqug1.jpeg?width=140&height=140&crop=1:1,smart&auto=webp&s=1b78735379cd5b26f84d6d3b574e27e83e7f2f27","thumbnailBlurred":false,"position":3,"relativePosition":3},{"id":"t3_1ftrryk","postId":"t3_1ftrryk","title":"I’ve felt a void in my life ever since my cat passed so I adopted the saddest cat at the shelter","url":"https://i.redd.it/614j61bv46sd1.jpeg","permalink":"/r/pics/comments/1ftrryk/ive_felt_a_void_in_my_life_ever_since_my_cat/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":170266,"comments":1566},"createdAt":"2024-10-01T16:06:35.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/bTKxb7Gxss4Az0tZUssHKW2apiacFGZUQW1A9kjGAj0.jpg","thumbnailBlurred":false,"position":4,"relativePosition":4},{"id":"t3_1jkpf5a","postId":"t3_1jkpf5a","title":"[oc] I tried a touchless ink pad on my cat and dog","url":"https://i.redd.it/n0foq3sn74re1.jpeg","permalink":"/r/pics/comments/1jkpf5a/oc_i_tried_a_touchless_ink_pad_on_my_cat_and_dog/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":53405,"comments":639},"createdAt":"2025-03-26T23:03:12.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/Z1CS046yCzD5ixwGInwa1dZN_92_afiqbrJsVmmuTtw.jpg","thumbnailBlurred":false,"position":5,"relativePosition":5},{"id":"t3_1fvaru1","postId":"t3_1fvaru1","title":"Went looking for my cat after I hadn’t seen her for w couple hours and this is how I found her.","url":"https://i.imgur.com/2m9KSmQ.jpeg","permalink":"/r/pics/comments/1fvaru1/went_looking_for_my_cat_after_i_hadnt_seen_her/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":68336,"comments":912},"createdAt":"2024-10-03T15:41:06.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/UdF1ayDsN4s1MdiWUra2VXdL0biA5t3QtByDwB-_JH4.jpg","thumbnailBlurred":false,"position":6,"relativePosition":6},{"id":"t3_1brxga4","postId":"t3_1brxga4","title":"My cat just turned me in to a Bond villain","url":"https://i.redd.it/fkh2iuihhkrc1.jpeg","permalink":"/r/pics/comments/1brxga4/my_cat_just_turned_me_in_to_a_bond_villain/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":79729,"comments":2744},"createdAt":"2024-03-31T00:49:09.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/j2Ey9kwuxlc2sM2-yuXt6cNNvpn09Cogw_sqlQjIaaw.jpg","thumbnailBlurred":false,"position":7,"relativePosition":7},{"id":"t3_1fe08nd","postId":"t3_1fe08nd","title":"Illegal alien eating a cat on TV.","url":"https://i.redd.it/7hymp83yi3od1.jpeg","permalink":"/r/pics/comments/1fe08nd/illegal_alien_eating_a_cat_on_tv/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":85127,"comments":899},"createdAt":"2024-09-11T03:03:26.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/cOUwicocfGg9uIDA6QkVPZ5U7IU1IWbjFXg5oAxkPdQ.jpg","thumbnailBlurred":false,"position":8,"relativePosition":8},{"id":"t3_1h3jjky","postId":"t3_1h3jjky","title":"A family with their cat wearing masks during the Spanish Flu","url":"https://i.redd.it/3661etuy534e1.png","permalink":"/r/pics/comments/1h3jjky/a_family_with_their_cat_wearing_masks_during_the/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":79500,"comments":565},"createdAt":"2024-11-30T18:56:51.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/3JWf7zVo6AgLNhjH0HKuAYeLtOn-YEeS34aJpdPWvrU.jpg","thumbnailBlurred":false,"position":9,"relativePosition":9},{"id":"t3_17xjfyu","postId":"t3_17xjfyu","title":"Left the office & found the neighbors cat in my car.","url":"https://i.redd.it/6mmhc93lux0c1.jpg","permalink":"/r/pics/comments/17xjfyu/left_the_office_found_the_neighbors_cat_in_my_car/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":220606,"comments":3452},"createdAt":"2023-11-17T16:54:07.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/Ld3S_-S6BzLvZEYj7Luv-zHzelmpNwPpfa04vUwSIf4.jpg","thumbnailBlurred":false,"position":10,"relativePosition":10},{"id":"t3_1ewrrgi","postId":"t3_1ewrrgi","title":"Kursk Offensive: Ukraine's Childless Cat Ladies Brigade is in Sudzha.","url":"https://i.redd.it/5uaj3o3dmsjd1.jpeg","permalink":"/r/pics/comments/1ewrrgi/kursk_offensive_ukraines_childless_cat_ladies/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":19937,"comments":991},"createdAt":"2024-08-20T10:06:28.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/buJGhxJF6SJdWnET3qR6TF3YraQCDs1S2xWwYa0wtUI.jpg","thumbnailBlurred":false,"position":11,"relativePosition":11},{"id":"t3_1cxrevq","postId":"t3_1cxrevq","title":"Someone left these two in a cat carrier two feet from the river","url":"https://www.reddit.com/gallery/1cxrevq","permalink":"/r/pics/comments/1cxrevq/someone_left_these_two_in_a_cat_carrier_two_feet/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":46250,"comments":786},"createdAt":"2024-05-22T04:07:03.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/xBp9PYvMQGnsoXsqpZJQ1KycrTB99k4-3cGnuMaepEU.jpg","thumbnailBlurred":false,"position":12,"relativePosition":12},{"id":"t3_1ffsxyv","postId":"t3_1ffsxyv","title":"Before anyone starts, this is my cat, not my dinner.","url":"https://i.redd.it/z88sc0jjgkod1.jpeg","permalink":"/r/pics/comments/1ffsxyv/before_anyone_starts_this_is_my_cat_not_my_dinner/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":31607,"comments":486},"createdAt":"2024-09-13T12:00:15.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/1wY6IWnWfLFshg9D6ECGt0hKYS3GjzSQ_8iSyQ_3dl4.jpg","thumbnailBlurred":false,"position":13,"relativePosition":13},{"id":"t3_10jhnbc","postId":"t3_10jhnbc","title":"Doja Cat covered in 30,000 Swarovski crystals applied by hand at the Schiaparelli Haute Couture show","url":"https://i.redd.it/vx484gv9avda1.jpg","permalink":"/r/pics/comments/10jhnbc/doja_cat_covered_in_30000_swarovski_crystals/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":44528,"comments":5809},"createdAt":"2023-01-23T17:12:46.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/0GQE935ryaDh9SMKhK0Ipb1WjhPYszdg-gaX78wEKqk.jpg","thumbnailBlurred":false,"position":14,"relativePosition":14},{"id":"t3_1czexys","postId":"t3_1czexys","title":"James Corden on his phone on the set of Cats","url":"https://i.redd.it/igubj0qdrb2d1.jpeg","permalink":"/r/pics/comments/1czexys/james_corden_on_his_phone_on_the_set_of_cats/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":22912,"comments":686},"createdAt":"2024-05-24T07:14:01.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/cWB9qmH1d3HsI3uYavypwYstybGwcHHH-GIA0zw63jQ.jpg","thumbnailBlurred":false,"position":15,"relativePosition":15},{"id":"t3_1hnezxx","postId":"t3_1hnezxx","title":"Black bengal cats exist","url":"https://i.redd.it/k38xh8n99e9e1.jpeg","permalink":"/r/pics/comments/1hnezxx/black_bengal_cats_exist/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":62118,"comments":276},"createdAt":"2024-12-27T13:35:37.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/w9In5V194wO2Dept3R6E3QH0w7E4nkW4hsZlKICcuPo.jpg","thumbnailBlurred":false,"position":16,"relativePosition":16},{"id":"t3_1703des","postId":"t3_1703des","title":"Father-in-law got this pic of a cat saved from a fire in SE Michigan","url":"https://i.redd.it/927gd8pf1asb1.jpg","permalink":"/r/pics/comments/1703des/fatherinlaw_got_this_pic_of_a_cat_saved_from_a/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":34789,"comments":922},"createdAt":"2023-10-05T00:16:39.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/HIPWl98uKjk3KkVl8tpU5hbsCmCaV1HbW98_9qc_cOQ.jpg","thumbnailBlurred":false,"position":17,"relativePosition":17},{"id":"t3_1jmpjfa","postId":"t3_1jmpjfa","title":"Freddie Mercury eating soup in bed with his cats, 1987","url":"https://i.redd.it/k4336lrhjnre1.png","permalink":"/r/pics/comments/1jmpjfa/freddie_mercury_eating_soup_in_bed_with_his_cats/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":40149,"comments":214},"createdAt":"2025-03-29T16:03:23.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/Fup8_Q03o3kvyAC8XaxHmLfOnTeycg5JiIkWtCn6QV8.jpg","thumbnailBlurred":false,"position":18,"relativePosition":18},{"id":"t3_1bl1wvp","postId":"t3_1bl1wvp","title":"Ukrainian refugee with her dog and two cats crosses the border into Poland","url":"https://i.redd.it/4g8g15cnlwpc1.png","permalink":"/r/pics/comments/1bl1wvp/ukrainian_refugee_with_her_dog_and_two_cats/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":35585,"comments":493},"createdAt":"2024-03-22T15:25:44.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/yPB8vNwBxLFGiiPRnZK9PNtkxQ2xe3vNIkAgxWpaxUk.jpg","thumbnailBlurred":false,"position":19,"relativePosition":19},{"id":"t3_13c881c","postId":"t3_13c881c","title":"Hanging out with some of the coolest cats out there.","url":"https://i.redd.it/ecyqaqznwoya1.jpg","permalink":"/r/pics/comments/13c881c/hanging_out_with_some_of_the_coolest_cats_out/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":40514,"comments":939},"createdAt":"2023-05-08T23:13:26.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/YJC8FD_s4HKpoZrLeYCnVR3lFcZTN5BJbwyYU7NHHU0.jpg","thumbnailBlurred":false,"position":20,"relativePosition":20},{"id":"t3_1czrg77","postId":"t3_1czrg77","title":"Mask mandates during WWI in 1918 were taken so seriously that they even made tiny cat masks.","url":"https://i.redd.it/v6kpe3dx1f2d1.jpeg","permalink":"/r/pics/comments/1czrg77/mask_mandates_during_wwi_in_1918_were_taken_so/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":15377,"comments":411},"createdAt":"2024-05-24T18:18:28.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/XgQIhRg71dALQlCwAJJLJD7pOGq1M66VtrQFwMTPE4Q.jpg","thumbnailBlurred":false,"position":21,"relativePosition":21},{"id":"t3_1pgf8u9","postId":"t3_1pgf8u9","title":"My cat had been acting skittish and I couldn't work out why.","url":"https://i.redd.it/4p4g8k27er5g1.jpeg","permalink":"/r/pics/comments/1pgf8u9/my_cat_had_been_acting_skittish_and_i_couldnt/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":4080,"comments":168},"createdAt":"2025-12-07T10:28:03.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/rMGWcx1S0TGMtQmj1tbWk6t6yIYVrB_CBWLmNeRdKkc.jpg","thumbnailBlurred":false,"position":22,"relativePosition":22},{"id":"t3_195xt9j","postId":"t3_195xt9j","title":"Same picture of my cat, 1 year apart","url":"https://i.redd.it/k36qnsnis9cc1.png","permalink":"/r/pics/comments/195xt9j/same_picture_of_my_cat_1_year_apart/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":31237,"comments":428},"createdAt":"2024-01-13T20:49:53.000Z","thumbnailUrl":"https://a.thumbs.redditmedia.com/GgBzXFf_3oTAj7zL1mfD_j6HRgK3AXepiAF0BprbZo0.jpg","thumbnailBlurred":false,"position":23,"relativePosition":23},{"id":"t3_zjz15r","postId":"t3_zjz15r","title":"I created an oil painting series about a cat exploring the cosmos","url":"https://www.reddit.com/gallery/zjz15r","permalink":"/r/pics/comments/zjz15r/i_created_an_oil_painting_series_about_a_cat/","nsfw":false,"spoiler":false,"crosspost":false,"subreddit":{"id":"t5_2qh0u","name":"pics","nsfw":false,"quarantined":false,"iconUrl":null,"bannerUrl":null,"description":null,"weeklyVisitors":null,"weeklyContributions":null},"metrics":{"votes":51271,"comments":774},"createdAt":"2022-12-12T13:24:41.000Z","thumbnailUrl":"https://b.thumbs.redditmedia.com/RIQObwHHTC1gPgpAIwDrIm5Fk2fM-wh0B_XjKzkeOSE.jpg","thumbnailBlurred":false,"position":24,"relativePosition":24}],"totalResults":25,"page":{"nextCursor":"t3_zjz15r","hasMore":true}},"meta":{"requestId":"req_01example_thumbnails","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/posts/comments":{"get":{"tags":["Reddit"],"summary":"List Reddit post comments","description":"Get comments on a Reddit 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 Reddit post whose comments should be listed."},"required":true,"description":"Link to the Reddit post whose comments should be listed.","name":"url","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Opaque cursor from a previous response to fetch another page of comments or replies."},"required":false,"description":"Opaque cursor from a previous response to fetch another page of comments or replies.","name":"cursor","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"When true, requests a lighter response shape when available."},"required":false,"description":"When true, requests a lighter response shape when available.","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 post was resolved for this request."},"post":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Stable post identifier."},"title":{"type":"string","description":"Post title. May be an empty string."},"url":{"type":"string","minLength":1,"description":"Canonical public post URL when available."},"permalink":{"type":"string","nullable":true,"description":"Relative permalink path when available."},"subreddit":{"type":"string","nullable":true,"description":"Subreddit name without a leading r/."},"subredditNamePrefixed":{"type":"string","nullable":true,"description":"Prefixed subreddit name when available."},"author":{"type":"string","nullable":true,"description":"Post author username when available."},"score":{"type":"integer","nullable":true,"minimum":0,"description":"Post score when available."},"upvoteRatio":{"type":"number","nullable":true,"description":"Upvote ratio when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Reported comment count when available."},"createdAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp when the post was created."},"createdUtc":{"type":"integer","nullable":true,"minimum":0,"description":"Unix timestamp in seconds when the post was created."},"over18":{"type":"boolean","description":"Whether the post is marked over-18."},"locked":{"type":"boolean","description":"Whether the post is locked."},"stickied":{"type":"boolean","description":"Whether the post is stickied."}},"required":["id","title","url","permalink","subreddit","subredditNamePrefixed","author","score","upvoteRatio","commentCount","createdAt","createdUtc","over18","locked","stickied"],"description":"Post details when available on this page."},"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 or replies is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for this response."},"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable identifier for the comment."},"url":{"type":"string","nullable":true,"description":"Public comment URL when available."},"permalink":{"type":"string","nullable":true,"description":"Relative permalink path when available."},"parentId":{"type":"string","nullable":true,"description":"Parent comment or post identifier when available."},"author":{"type":"string","nullable":true,"description":"Comment author username when available."},"text":{"type":"string","description":"Comment text."},"renderedHtml":{"type":"string","nullable":true,"description":"Rendered HTML for the comment when available."},"score":{"type":"integer","nullable":true,"description":"Comment score when available."},"upvotes":{"type":"integer","nullable":true,"minimum":0,"description":"Upvote count when available."},"createdAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp when the comment was created."},"createdUtc":{"type":"integer","nullable":true,"minimum":0,"description":"Unix timestamp in seconds when the comment was created."},"depth":{"type":"integer","minimum":0,"description":"Nesting depth of the comment in the thread."},"isSubmitter":{"type":"boolean","description":"Whether the comment author is the post author."},"stickied":{"type":"boolean","description":"Whether the comment is stickied."},"locked":{"type":"boolean","description":"Whether the comment is locked."},"distinguished":{"type":"string","nullable":true,"description":"Distinguished comment label when available."},"replies":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable identifier for the comment."},"url":{"type":"string","nullable":true,"description":"Public comment URL when available."},"permalink":{"type":"string","nullable":true,"description":"Relative permalink path when available."},"parentId":{"type":"string","nullable":true,"description":"Parent comment or post identifier when available."},"author":{"type":"string","nullable":true,"description":"Comment author username when available."},"text":{"type":"string","description":"Comment text."},"renderedHtml":{"type":"string","nullable":true,"description":"Rendered HTML for the comment when available."},"score":{"type":"integer","nullable":true,"description":"Comment score when available."},"upvotes":{"type":"integer","nullable":true,"minimum":0,"description":"Upvote count when available."},"createdAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp when the comment was created."},"createdUtc":{"type":"integer","nullable":true,"minimum":0,"description":"Unix timestamp in seconds when the comment was created."},"depth":{"type":"integer","minimum":0,"description":"Nesting depth of the comment in the thread."},"isSubmitter":{"type":"boolean","description":"Whether the comment author is the post author."},"stickied":{"type":"boolean","description":"Whether the comment is stickied."},"locked":{"type":"boolean","description":"Whether the comment is locked."},"distinguished":{"type":"string","nullable":true,"description":"Distinguished comment label when available."},"replies":{"type":"object","properties":{"items":{"type":"array","items":{"nullable":true},"description":"Further nested replies beyond the documented depth."},"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 or replies is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state for nested replies."}},"required":["items","page"],"description":"Nested replies attached to this comment."}},"required":["id","url","permalink","parentId","author","text","renderedHtml","score","upvotes","createdAt","createdUtc","depth","isSubmitter","stickied","locked","distinguished","replies"]},"description":"Nested replies for this comment."},"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 or replies is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state for nested replies."}},"required":["items","page"],"description":"Nested replies attached to this comment."}},"required":["id","url","permalink","parentId","author","text","renderedHtml","score","upvotes","createdAt","createdUtc","depth","isSubmitter","stickied","locked","distinguished","replies"]},"description":"Comments returned for this page."}},"required":["lookupStatus","post","page","comments"],"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":{"id":"ablzuq","title":"People who haven't pooped in 2019 yet, why are you still holding on to last years shit?","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/","subreddit":"AskReddit","subredditNamePrefixed":"r/AskReddit","author":"ShoddySubstance","score":221998,"upvoteRatio":0.91,"commentCount":7901,"createdAt":"2019-01-01T21:06:27.000Z","createdUtc":1546376787,"over18":false,"locked":false,"stickied":false},"page":{"nextCursor":"ed1jhoi,ed1f3kw,ed1qgjh,ed1e4vd,ed1benx,ed1e6rw,ed1k3ad,ed1eak1,eet1405,ed2bf3m,ef74u7f,ed1j20m,ed1mq5i,ed1khi5,ed1m0ya,ed1olpa,ed1kil6,ed1ii4u,ed1ebwf,ed1pqb2,ed1ikg8,eemwre4,ejf16yu,ed1enmh,ept7g6w,en5htox,edq39af,ed1pg5s,ed1r2sh,egdyif2,ed229d8,ed1e43h,ektwphx,eejlgxi,epi5726,ekizds1,eg6l6r4,ed1i91r,ed1dws1,ed1iixz,ed1i9ot,ed1ixsf,ei0zic1,ejuyeud,ed1dt0g,ekobrqp,ed1ik91,ed1dje4,efaiw3g,ed1x5pz,ed1lsfb,eegd26z,ed1l4gf,eq8omco,ed1d93t,ed1ielq,ed1e8bv,ed1dmn6,ee1pvnc,ed22f4h,edhi0jh,ed1q3nt,eihmpi6,ep0e7ux,en5ta39,ehacon4,ed2fqtv,ed22pkg,ejwmkok,ed1iy9d,emfn0c7,ed1objx,ed1qyz8,ed1nn2e,epzqcd4,ed1q21p,ed1e53z,efranpz,ed1qvr0,ed22gli,ed1dgey,egm2dzm,ejygb43,hgqxxcp,eeg1bod,emk3wji,ed1iajm,hgq0wpy,eq1p8om,ej7lrpc,ed1cnmm,ejaoh0u,ed1lzg3,ed1j7qq,ed1lwq1,ed1k3po,ej2bypz,ed1md7j,ed1j3vl,ed1i8e5","hasMore":true},"comments":[{"id":"ed1czme","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1czme/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1czme/","parentId":"t3_ablzuq","author":"sweatybeard","text":"But when I finally do, it'll be the years biggest shit ^^^^^so ^^^^^far","renderedHtml":"<div class=\"md\"><p>But when I finally do, it&#39;ll be the years biggest shit <sup><sup><sup><sup><sup>so</sup></sup></sup></sup></sup> <sup><sup><sup><sup><sup>far</sup></sup></sup></sup></sup></p>\n</div>","score":12201,"upvotes":12201,"createdAt":"2019-01-01T21:35:24.000Z","createdUtc":1546378524,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1su6t","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1su6t/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1su6t/","parentId":"t1_ed1czme","author":"jofwu","text":"Somewhere out there, somebody has made the biggest poop of the year. And they don't even know it. ","renderedHtml":"<div class=\"md\"><p>Somewhere out there, somebody has made the biggest poop of the year. And they don&#39;t even know it. </p>\n</div>","score":2424,"upvotes":2424,"createdAt":"2019-01-02T01:13:09.000Z","createdUtc":1546391589,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ye8p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ye8p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ye8p/","parentId":"t1_ed1su6t","author":"[deleted]","text":"I made my biggest poop of last year right in between Christmas and New year's- first time I could say that I filled the bowl to the waterline","renderedHtml":"<div class=\"md\"><p>I made my biggest poop of last year right in between Christmas and New year&#39;s- first time I could say that I filled the bowl to the waterline</p>\n</div>","score":780,"upvotes":780,"createdAt":"2019-01-02T02:34:28.000Z","createdUtc":1546396468,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed2xsuk","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2xsuk/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2xsuk/","parentId":"t1_ed1ye8p","author":"minjabinja","text":"goals","renderedHtml":"<div class=\"md\"><p>goals</p>\n</div>","score":333,"upvotes":333,"createdAt":"2019-01-02T15:19:39.000Z","createdUtc":1546442379,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"eduy6f3,ejxami8,eegd7xa,ef29a32,ehq4puw,eqb5cnr,edhhwh5,ei3p2wr,ej851tk,el4yhl2,epc5qyk","hasMore":true}}}],"page":{"nextCursor":"egos1bd,ef1lv5d,el1tr5b","hasMore":true}}}],"page":{"nextCursor":"ed1lvsa,ed3fnpq,ed25l2w,ed2bzid,ed2do8g,eda7sqp,es4scjk,edjv4rx,efp5ww0,eh8q0ke,em7lhme,epkr3k2,epu6jcz,er6c3si,errghbq,ef687ye","hasMore":true}}},{"id":"ed1d2z7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d2z7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d2z7/","parentId":"t3_ablzuq","author":"ButtholeLinoleum","text":"I've been pissing out my ass all fuckin day.","renderedHtml":"<div class=\"md\"><p>I&#39;ve been pissing out my ass all fuckin day.</p>\n</div>","score":14264,"upvotes":14264,"createdAt":"2019-01-01T21:36:36.000Z","createdUtc":1546378596,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kaog","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kaog/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kaog/","parentId":"t1_ed1d2z7","author":"AtaxyQuiver","text":"You have had this account for 4 years and the only posts on it are fairly disturbing....","renderedHtml":"<div class=\"md\"><p>You have had this account for 4 years and the only posts on it are fairly disturbing....</p>\n</div>","score":1257,"upvotes":1257,"createdAt":"2019-01-01T23:14:03.000Z","createdUtc":1546384443,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1nf5s","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nf5s/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nf5s/","parentId":"t1_ed1kaog","author":"[deleted]","text":"It has intruged me oh what the fuck","renderedHtml":"<div class=\"md\"><p>It has intruged me oh what the fuck</p>\n</div>","score":357,"upvotes":357,"createdAt":"2019-01-01T23:56:56.000Z","createdUtc":1546387016,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1q3oe","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1q3oe/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1q3oe/","parentId":"t1_ed1nf5s","author":"Silneit","text":"'To attach my scrotum to my sister's face, should I use staples or glue?'","renderedHtml":"<div class=\"md\"><p>&#39;To attach my scrotum to my sister&#39;s face, should I use staples or glue?&#39;</p>\n</div>","score":469,"upvotes":469,"createdAt":"2019-01-02T00:34:02.000Z","createdUtc":1546389242,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"eegnz76","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/eegnz76/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/eegnz76/","parentId":"t1_ed1q3oe","author":"jergin_therlax","text":"Also, \"What the fuck is wrong with people? Is your life truly so empty that sitting on a frozen lake in a tent is considered a good time? I just wiped my diarrhea butt with my sister's panties.\" in r/Minnesota lmfao. Glad I followed my curiosity.\n\n","renderedHtml":"<div class=\"md\"><p>Also, &quot;What the fuck is wrong with people? Is your life truly so empty that sitting on a frozen lake in a tent is considered a good time? I just wiped my diarrhea butt with my sister&#39;s panties.&quot; in <a href=\"/r/Minnesota\">r/Minnesota</a> lmfao. Glad I followed my curiosity.</p>\n</div>","score":147,"upvotes":147,"createdAt":"2019-01-19T19:22:12.000Z","createdUtc":1547925732,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ehrrj4q,ejfgyp7","hasMore":true}}}],"page":{"nextCursor":"ed2jhz9,eddbbs8,edxsm5y,egy6ilp,egy6gxt","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"edwrt28,eo0ndgv,efej09r,ejb270z,ekoqf09,elwsp59","hasMore":true}}},{"id":"ed1jlq7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jlq7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jlq7/","parentId":"t1_ed1d2z7","author":"flesh0racle","text":"Same. Shitting through the eye of a needle.","renderedHtml":"<div class=\"md\"><p>Same. Shitting through the eye of a needle.</p>\n</div>","score":1488,"upvotes":1488,"createdAt":"2019-01-01T23:04:38.000Z","createdUtc":1546383878,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1p3rs,ed27ysd,ed29rco,ed2a1kf,ed2fdru,edo6b7u,eewpa2x,edb5cb5,ees8vwm","hasMore":true}}},{"id":"ed1iwf0","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwf0/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwf0/","parentId":"t1_ed1d2z7","author":"mrsuns10","text":"Username checks out ","renderedHtml":"<div class=\"md\"><p>Username checks out </p>\n</div>","score":540,"upvotes":540,"createdAt":"2019-01-01T22:54:51.000Z","createdUtc":1546383291,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed2b291,eduzuvt","hasMore":true}}}],"page":{"nextCursor":"ed1qtm8,ed1k8jy,ed25u8z,ed2a7jk,ed1qito,ed1rruv,ed1prak,ed1r8jq,ed27jpz,ed2azfg,ed280mp,ed28f31,ed2elqi,ed1nowd,ed1om1c,es7x9vv,ed1yuqa,ed29rkq,ed2hn7r,ed2hv0y,ed2hv5e,ed2i5my,ed2k5sd,ed2kirv,ed2mzar,ed2p49f,ed2vyzd,ed47uda,ed7211m,eddhezv,eeh1z1g,ef2a2el,ehox6lm,ehrfb4d,ejetrfc,ele0tyg,em05zgz,eptur3d,eqkog7n,erdsif9,ery32uz","hasMore":true}}},{"id":"ed1emmi","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1emmi/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1emmi/","parentId":"t3_ablzuq","author":"abksploder","text":"Bold of you to assume I'm going to take a shit this year.","renderedHtml":"<div class=\"md\"><p>Bold of you to assume I&#39;m going to take a shit this year.</p>\n</div>","score":34856,"upvotes":34856,"createdAt":"2019-01-01T21:56:33.000Z","createdUtc":1546379793,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1erpi","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1erpi/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1erpi/","parentId":"t1_ed1emmi","author":"ShoddySubstance","text":"bottling it up is not healthy!","renderedHtml":"<div class=\"md\"><p>bottling it up is not healthy!</p>\n</div>","score":7607,"upvotes":7607,"createdAt":"2019-01-01T21:58:25.000Z","createdUtc":1546379905,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lm2g","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lm2g/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lm2g/","parentId":"t1_ed1erpi","author":"Joris2627","text":"Bold of you to think i am botteling it up","renderedHtml":"<div class=\"md\"><p>Bold of you to think i am botteling it up</p>\n</div>","score":2947,"upvotes":2947,"createdAt":"2019-01-01T23:32:09.000Z","createdUtc":1546385529,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1nizp","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nizp/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nizp/","parentId":"t1_ed1lm2g","author":"Yarxing","text":"Are you keeping it in a bag? ","renderedHtml":"<div class=\"md\"><p>Are you keeping it in a bag? </p>\n</div>","score":1325,"upvotes":1325,"createdAt":"2019-01-01T23:58:22.000Z","createdUtc":1546387102,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1o8nq","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o8nq/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o8nq/","parentId":"t1_ed1nizp","author":"NotTRYINGtobeLame","text":"The full term is *colostomy bag*","renderedHtml":"<div class=\"md\"><p>The full term is <em>colostomy bag</em></p>\n</div>","score":1101,"upvotes":1101,"createdAt":"2019-01-02T00:07:53.000Z","createdUtc":1546387673,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1od4p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1od4p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1od4p/","parentId":"t1_ed1o8nq","author":"ThatTechnician","text":"I'm definitely holding this full term. ","renderedHtml":"<div class=\"md\"><p>I&#39;m definitely holding this full term. </p>\n</div>","score":285,"upvotes":285,"createdAt":"2019-01-02T00:09:36.000Z","createdUtc":1546387776,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed2air6","hasMore":true}}}],"page":{"nextCursor":"ed1qmkq,ed1qoxs,ed1qpor,ed1riau,edtpfq5,ed1qzy6","hasMore":true}}}],"page":{"nextCursor":"ed1polt,ed1osw8,ed1plah,ed1q5jd,ed1r8ie,ed1sq12,ed1ste6,ed1oifv,ed1pyvh,ed1q0tw,ergayx8,ed1waxv,ed2ou1i,ed31x1n","hasMore":true}}}],"page":{"nextCursor":"ed1nj6g,ed1orev,en8zmq0","hasMore":true}}}],"page":{"nextCursor":"ed1tnly,ed1oofm,ed23t1n,ed2ae3n,ed1om1m,ed1ovvz,ed1o6bx,ed1o87w,ed1ooa4,ed1owk7,ed1qu8u,ed241r2,ed24n97,ed25stw,ed277td,ed2i189,ed2o2no,ed2ovbv,ed2reb8,ed2va12,eqz5jg8","hasMore":true}}},{"id":"ed1o9id","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o9id/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o9id/","parentId":"t1_ed1emmi","author":"jld2k6","text":"Fun fact, If you don't poop for long enough it will literally back up into your stomach and you will throw up shit and become septic. I knew a woman on methadone who became so constipated she stopped pooping and didn't do anything about it until she started vomiting up shit and almost died. I can't even imagine what the process of clearing 28ft (8.53m) of mostly hard dried up shit from your intestines is like after that if you survive","renderedHtml":"<div class=\"md\"><p>Fun fact, If you don&#39;t poop for long enough it will literally back up into your stomach and you will throw up shit and become septic. I knew a woman on methadone who became so constipated she stopped pooping and didn&#39;t do anything about it until she started vomiting up shit and almost died. I can&#39;t even imagine what the process of clearing 28ft (8.53m) of mostly hard dried up shit from your intestines is like after that if you survive</p>\n</div>","score":2566,"upvotes":2566,"createdAt":"2019-01-02T00:08:13.000Z","createdUtc":1546387693,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1pj99","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pj99/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pj99/","parentId":"t1_ed1o9id","author":"prinzklaus","text":"That was not a fun fact at all.","renderedHtml":"<div class=\"md\"><p>That was not a fun fact at all.</p>\n</div>","score":3852,"upvotes":3852,"createdAt":"2019-01-02T00:26:07.000Z","createdUtc":1546388767,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1pzqm","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pzqm/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pzqm/","parentId":"t1_ed1pj99","author":"bradlees","text":"UNSUBSCRIBE \n\nUNSUBSCRIBE ","renderedHtml":"<div class=\"md\"><p>UNSUBSCRIBE </p>\n\n<p>UNSUBSCRIBE </p>\n</div>","score":1890,"upvotes":1890,"createdAt":"2019-01-02T00:32:33.000Z","createdUtc":1546389153,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1sap6","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sap6/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sap6/","parentId":"t1_ed1pzqm","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":757,"upvotes":757,"createdAt":"2019-01-02T01:05:24.000Z","createdUtc":1546391124,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1sy6m","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sy6m/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sy6m/","parentId":"t1_ed1sap6","author":"booger_sculptor","text":"Poo Trivia: do the farts push the shit out, or does the shit push the farts out?","renderedHtml":"<div class=\"md\"><p>Poo Trivia: do the farts push the shit out, or does the shit push the farts out?</p>\n</div>","score":337,"upvotes":337,"createdAt":"2019-01-02T01:14:45.000Z","createdUtc":1546391685,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1t4jm","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t4jm/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t4jm/","parentId":"t1_ed1sy6m","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":272,"upvotes":272,"createdAt":"2019-01-02T01:17:20.000Z","createdUtc":1546391840,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1tvvc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1tvvc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1tvvc/","parentId":"t1_ed1t4jm","author":"[deleted]","text":"This username KNOWS. ","renderedHtml":"<div class=\"md\"><p>This username KNOWS. </p>\n</div>","score":85,"upvotes":85,"createdAt":"2019-01-02T01:28:17.000Z","createdUtc":1546392497,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1uef1","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1uef1/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1uef1/","parentId":"t1_ed1tvvc","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":67,"upvotes":67,"createdAt":"2019-01-02T01:35:50.000Z","createdUtc":1546392950,"depth":8,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ef2557t,ef3lkap,edqcb39,edv20iq","hasMore":true}}}],"page":{"nextCursor":"emphkse","hasMore":true}}}],"page":{"nextCursor":"ed1tjtd,edu82zx","hasMore":true}}}],"page":{"nextCursor":"ed3pmjc,ed2pfro,ef2bubp,ed2jrxs,ed1vncu,eit4ltc,ed2kwcg,ef2b0z4","hasMore":true}}}],"page":{"nextCursor":"ed1smho,ehe4wb6","hasMore":true}}}],"page":{"nextCursor":"ed1xt6j,ed1xac3,ed1qi8j","hasMore":true}}}],"page":{"nextCursor":"ed1snx5,ed1ql04,ed1sc2l,ed1sr56,ed25wyh,eiv6x5z,ed1sb09,ed2zoon","hasMore":true}}},{"id":"ed1piqc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1piqc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1piqc/","parentId":"t1_ed1o9id","author":"Royer26","text":"I didn’t poop for a couple weeks a few months back. When I finally went to the hospital they gave me a pill to put up my butt and a jug of cherry flavoured laxative to chug. I lost 15 lbs","renderedHtml":"<div class=\"md\"><p>I didn’t poop for a couple weeks a few months back. When I finally went to the hospital they gave me a pill to put up my butt and a jug of cherry flavoured laxative to chug. I lost 15 lbs</p>\n</div>","score":741,"upvotes":741,"createdAt":"2019-01-02T00:25:55.000Z","createdUtc":1546388755,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ri7e","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ri7e/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ri7e/","parentId":"t1_ed1piqc","author":"Hhwwhat","text":"15 lbs = 6 Courics. You still have a long way to go to beat Randy Marsh.","renderedHtml":"<div class=\"md\"><p>15 lbs = 6 Courics. You still have a long way to go to beat Randy Marsh.</p>\n</div>","score":534,"upvotes":534,"createdAt":"2019-01-02T00:54:06.000Z","createdUtc":1546390446,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1rksh","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rksh/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rksh/","parentId":"t1_ed1ri7e","author":"Royer26","text":"Everyone needs goals","renderedHtml":"<div class=\"md\"><p>Everyone needs goals</p>\n</div>","score":57,"upvotes":57,"createdAt":"2019-01-02T00:55:07.000Z","createdUtc":1546390507,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1u0co,ed24swd,ed2gakk,ed1u3j3","hasMore":true}}}],"page":{"nextCursor":"ed1prvu,ed1rfd4,ed1w8dv,ed1rrag,ed1rq77,ed1ycrh,ed25fos,ed296ax,ed28166,ed2b5wh","hasMore":true}}},{"id":"ed1of6q","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1of6q/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1of6q/","parentId":"t1_ed1o9id","author":"mrkruk","text":"That’s legit horrifying.","renderedHtml":"<div class=\"md\"><p>That’s legit horrifying.</p>\n</div>","score":286,"upvotes":286,"createdAt":"2019-01-02T00:10:21.000Z","createdUtc":1546387821,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1rhhd","hasMore":true}}}],"page":{"nextCursor":"ed1q40v,ed1pt4k,ed1q0ze,ed1pf36,ed1rpl2,ed1pkq1,ed1qw52,ed1xc7j,ed2stwt,ed1p6vm,ed1polf,ed1qb9g,ed1rd1g,ed1rz6d,ed1sq3x,ed1tljp,ed1uhfk,ed1xzf9,ed21iwb,ed2l5nv,eiwheps,ed1ouue,ed1p5kg,ed1r9a8,ed1sgws,ed2981w,ed1p4mc,ed1psoe,eryz5m0,ed1qpv9,ed1s7lz,ed1sj31,ed1sp0m,ed1t740,ed1t94u,ed1thuk,ed1tivo,ed1tjg7,ed1ts8a,ed1uy0i,ed1vmkh,ed1vyhv,ed1wwmj,ed20rmn,ed23zmm,ed24asn,ed25y3e,ed26231,ed26x9l,ed27qj8,ed299n6,ed2bga7,ed2cqwz,ed2jwyv,ed2k4f8,ed2nqkl,ed2nw6f,ed2p5pi,ed2q2b4,ed2s3gf,ed33sgk,ed3itih,edc7sov,edgqear,edtojeu,epz8vqe","hasMore":true}}}],"page":{"nextCursor":"ed1olmq,ed1p6w6,ed1p4zm,eftzcn5,ed1omi7,ed1u80c,eg6u1i2,ed1nz7a,ed1ozqk,ed1s4ta,ed2bpp3,ed1o6xe,ed1ogxw,erde34x,ed1otg2,ed1p4cj,ed1p96i,ed1q6kp,ed1qrin,ed1qwlw,ed1qx1o,ed1rcbc,ed1rq5x,ed1s0lg,ed1s60h,ed1s7fp,ed1sgnn,ed1swiu,ed1tndh,ed1u5kj,ed1vgxy,ed1x7v6,ed1xtuf,ed1zatl,ed1zidc,ed23s7c,ed23xix,ed28505,ed2u2f6,ed3mi4w,ed73h81,ehd9d7f,ehjbskb,eiqvea8,eixkfyz,ejfhkms,eo6oeel,eo6x8nk,eoa62fu,eog50yn,eqrqzy3,eraxx4a","hasMore":true}}},{"id":"ed1dhh6","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhh6/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhh6/","parentId":"t3_ablzuq","author":"adsadsadsadsads","text":"We have guests and I literally can't relax.","renderedHtml":"<div class=\"md\"><p>We have guests and I literally can&#39;t relax.</p>\n</div>","score":19265,"upvotes":19265,"createdAt":"2019-01-01T21:41:49.000Z","createdUtc":1546378909,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jt1s","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt1s/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt1s/","parentId":"t1_ed1dhh6","author":"[deleted]","text":"Ahhh, I see I'm not the only one with poop anxiety ","renderedHtml":"<div class=\"md\"><p>Ahhh, I see I&#39;m not the only one with poop anxiety </p>\n</div>","score":5625,"upvotes":5625,"createdAt":"2019-01-01T23:07:24.000Z","createdUtc":1546384044,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1wghe","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wghe/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wghe/","parentId":"t1_ed1jt1s","author":"TEFL_job_seeker","text":"I consider wolves to be stronger and deadlier than coyotes","renderedHtml":"<div class=\"md\"><p>I consider wolves to be stronger and deadlier than coyotes</p>\n</div>","score":967,"upvotes":967,"createdAt":"2019-01-02T02:06:09.000Z","createdUtc":1546394769,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed2258f","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2258f/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2258f/","parentId":"t1_ed1wghe","author":"urbanflow27","text":"Good to know im not the only one. I get poop anxiety as well especially at work!","renderedHtml":"<div class=\"md\"><p>Good to know im not the only one. I get poop anxiety as well especially at work!</p>\n</div>","score":351,"upvotes":351,"createdAt":"2019-01-02T03:30:55.000Z","createdUtc":1546399855,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed22ln2","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed22ln2/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed22ln2/","parentId":"t1_ed2258f","author":"[deleted]","text":"Me too! And it always seems like nobody will be near the bathroom until I sit down for 'Ol Deucie...then they're having conversations 2 ft away on the other side of the door 😖","renderedHtml":"<div class=\"md\"><p>Me too! And it always seems like nobody will be near the bathroom until I sit down for &#39;Ol Deucie...then they&#39;re having conversations 2 ft away on the other side of the door 😖</p>\n</div>","score":280,"upvotes":280,"createdAt":"2019-01-02T03:38:04.000Z","createdUtc":1546400284,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed24xp4,erav0e2,ed27s7d,eixq8mm","hasMore":true}}}],"page":{"nextCursor":"ed22tax,ed29ff5,ed25mo0,ed25chh,ed25v40,ed2lzbk","hasMore":true}}}],"page":{"nextCursor":"ed25ddu,ed24xga,ed25hb2,eeqzczq,ed23026,ed23ths,ed25yxz,ed2qkke,ed2h214,ed258ai,ed29wz4,ed2ca17,ed2f6ix,ed2ohyh,ed2uvj0","hasMore":true}}}],"page":{"nextCursor":"ed26s5e,ed24ob8,ed253i7,ed2gjs7,ed24ak3,ed26ae1,ed2aqem,ed2a3vx,ed2atz6,ed2v357","hasMore":true}}},{"id":"ed1odlw","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1odlw/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1odlw/","parentId":"t1_ed1dhh6","author":"igotmyliverpierced","text":"While friends were here today for football, I snuck away for my own bowl game.","renderedHtml":"<div class=\"md\"><p>While friends were here today for football, I snuck away for my own bowl game.</p>\n</div>","score":293,"upvotes":293,"createdAt":"2019-01-02T00:09:46.000Z","createdUtc":1546387786,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed25fj1,ed26auy","hasMore":true}}}],"page":{"nextCursor":"ed1l36q,ed1z173,ed24h77,ed2459m,ed1ix6k,ed22qz5,ed27eev,ed31oys,ed22j9r,ed251xk,ed27tlm,ed2cle4,ed22mop,ed27ow9,ed4b1c3,edd0syu,ed23tbk,ed24fjc,ed255y6,ed25lum,ed277cl,ed27zq5,ed28loy,ed29uh9,ed2cms2,ed2efuq,ed2eiry,ed2n0kl,ed2obos,ed2yjb4,ed2ykuy,ed5x81a","hasMore":true}}},{"id":"ed1dqvy","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dqvy/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dqvy/","parentId":"t3_ablzuq","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":11065,"upvotes":11065,"createdAt":"2019-01-01T21:45:09.000Z","createdUtc":1546379109,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1j7is","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j7is/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j7is/","parentId":"t1_ed1dqvy","author":"[deleted]","text":"Aw man what a terrible way to spend NYE! I hope you feel better soon bud!","renderedHtml":"<div class=\"md\"><p>Aw man what a terrible way to spend NYE! I hope you feel better soon bud!</p>\n</div>","score":4692,"upvotes":4692,"createdAt":"2019-01-01T22:59:09.000Z","createdUtc":1546383549,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jebk","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jebk/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jebk/","parentId":"t1_ed1j7is","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":1195,"upvotes":1195,"createdAt":"2019-01-01T23:01:48.000Z","createdUtc":1546383708,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1m58u","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m58u/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m58u/","parentId":"t1_ed1jebk","author":"xjeeper","text":"There's nothing worse than when it's coming out both ends, I've had actual food poisoning once and think I would rather die than deal with that again. ","renderedHtml":"<div class=\"md\"><p>There&#39;s nothing worse than when it&#39;s coming out both ends, I&#39;ve had actual food poisoning once and think I would rather die than deal with that again. </p>\n</div>","score":498,"upvotes":498,"createdAt":"2019-01-01T23:39:31.000Z","createdUtc":1546385971,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1njye","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1njye/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1njye/","parentId":"t1_ed1m58u","author":"[deleted]","text":"That was me last night into today. Both ends violently. Lost ten pounds thought so I'm way ahead on my new years weight loss goals!","renderedHtml":"<div class=\"md\"><p>That was me last night into today. Both ends violently. Lost ten pounds thought so I&#39;m way ahead on my new years weight loss goals!</p>\n</div>","score":502,"upvotes":502,"createdAt":"2019-01-01T23:58:43.000Z","createdUtc":1546387123,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1r5gs","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1r5gs/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1r5gs/","parentId":"t1_ed1njye","author":"gr8uddini","text":"Haha.  I lost 5 and was thinking the exact same thing until I saw your 10.  Now I have a new 2020 resolution. ","renderedHtml":"<div class=\"md\"><p>Haha.  I lost 5 and was thinking the exact same thing until I saw your 10.  Now I have a new 2020 resolution. </p>\n</div>","score":126,"upvotes":126,"createdAt":"2019-01-02T00:49:02.000Z","createdUtc":1546390142,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed3ftb9","hasMore":true}}},{"id":"ed1os57","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1os57/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1os57/","parentId":"t1_ed1njye","author":"xjeeper","text":"Stay hydrated! Hope you feel better soon.","renderedHtml":"<div class=\"md\"><p>Stay hydrated! Hope you feel better soon.</p>\n</div>","score":145,"upvotes":145,"createdAt":"2019-01-02T00:15:30.000Z","createdUtc":1546388130,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed2d0tj,ed1y3nt","hasMore":true}}}],"page":{"nextCursor":"ed1rdsq,ed21op8,ed1xv96,ed1urjx,ed25c83,ed2ra2a,ed1vbg9,ed1wv8y,ed2bb9s","hasMore":true}}}],"page":{"nextCursor":"ed1ta48,ed1qea8,ed1oftm,ed1rel6,ed1qssv,ed1tn4u,ed261l7,ed1rjfm,ed1uuzn,ed22rxr,ed2661f,ed22z27,ed1tils,ed1zni8,ed20ydb,ed237ur,ed26t1g,ed28ikk,ed257lb,ed746zr,ed1w2zf,ed1x8i8,ed2cbgf,ed2qfoi,ed2usyr,ed2v332","hasMore":true}}}],"page":{"nextCursor":"ed1oy4p,ed1rid8,ed1yx3n,ed1op7m,ed1pm3w,ed27k20,ed1pgc1,ed1t87f,ed1unp0,ed20zrr","hasMore":true}}}],"page":{"nextCursor":"ed1msgf,ed1pnfi,ed1p8db,ed2h5f8,ed2h4m2","hasMore":true}}},{"id":"ed1loin","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1loin/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1loin/","parentId":"t1_ed1dqvy","author":"diff2","text":"Where at? I was puking all day saturday..I couldn't keep down even water and thought my skin looked a strange color so I thought I should go to the doctor..Was extremely weak too. Some anti-vomit/nausea medicine and an IV and I felt better in a few hours.\n\nI kinda wonder if I actually should have gone or if I should have toughened it out for 24 hours and hoped to get better.. I have no one to take care of me while I'm sick and I was worried of becoming \"too sick\" too..\n\n-edit.. I live in socal seems to be going around the US?..Weird thing is that I hardly go out and get in contact with people. Like I can pinpoint exactly where I got it from and when.. Which was when I went out for some fast food on friday night..It was my favorite place so maybe one of the employees got sick a few days earlier and didn't wash enough? or a customer got sick and their sick germs were all over the place.. I do know the norovirus is extremely contagious..\n\nWas also wondering if I should call them and tell them I got the stomach flu from their place or not..","renderedHtml":"<div class=\"md\"><p>Where at? I was puking all day saturday..I couldn&#39;t keep down even water and thought my skin looked a strange color so I thought I should go to the doctor..Was extremely weak too. Some anti-vomit/nausea medicine and an IV and I felt better in a few hours.</p>\n\n<p>I kinda wonder if I actually should have gone or if I should have toughened it out for 24 hours and hoped to get better.. I have no one to take care of me while I&#39;m sick and I was worried of becoming &quot;too sick&quot; too..</p>\n\n<p>-edit.. I live in socal seems to be going around the US?..Weird thing is that I hardly go out and get in contact with people. Like I can pinpoint exactly where I got it from and when.. Which was when I went out for some fast food on friday night..It was my favorite place so maybe one of the employees got sick a few days earlier and didn&#39;t wash enough? or a customer got sick and their sick germs were all over the place.. I do know the norovirus is extremely contagious..</p>\n\n<p>Was also wondering if I should call them and tell them I got the stomach flu from their place or not..</p>\n</div>","score":184,"upvotes":184,"createdAt":"2019-01-01T23:33:06.000Z","createdUtc":1546385586,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ofvc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ofvc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ofvc/","parentId":"t1_ed1loin","author":"melindu","text":"If you're already feeling better it sounds like you made the right choice by going. Don't ever underestimate the power of dehydration. I'm glad you're doing better already! Happy New Year :)","renderedHtml":"<div class=\"md\"><p>If you&#39;re already feeling better it sounds like you made the right choice by going. Don&#39;t ever underestimate the power of dehydration. I&#39;m glad you&#39;re doing better already! Happy New Year :)</p>\n</div>","score":152,"upvotes":152,"createdAt":"2019-01-02T00:10:36.000Z","createdUtc":1546387836,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1rzw7,ed2e9qe,ed1tbum","hasMore":true}}}],"page":{"nextCursor":"ed1r6td,ed1q13h,ed1wst5,ed23025,ed1ptgv,ed20vts,ed21iwi,ed267ic,ed1q4go,ed1vyxr,ed4ziii,ed20xv7,ed21zl3,ed22no2,ed242ie,ed2cb9m,ed2docu,ed2f1vi,ed2hd69,ed2q0bn,ed2tufq","hasMore":true}}}],"page":{"nextCursor":"ed1k0s1,ed1lsof,ed1m6yy,ed1nmr9,ed1p98w,ed1m289,ed1n69d,ed1kedb,ed1r4er,ed1myx4,ed1onw8,ed1pd95,ed1jzy7,ed1otz5,ed1nmx2,ed20u0p,ed1murr,ed2hgi4,ed1lew2,ed1nlkr,ed1oxpy,ed1puww,ed1k5bg,ed1oizj,ed1n033,ed2goh7,ed1r3ey,ed1lbbe,ed1q9ma,ed1pgwm,ed1oylh,ed1mcef,ed1oquv,ed1qdkf,ed25knb,ed1s158,ed23m8g,ed1sghv,ed1xoak,ed1texo,ed1us03,ed1sln2,ed279qr,ed1x7ky,ed1yehy,ed1pxfx,ed1vbmw,ed6bfh9,ed21uk4,ed1uqo5,ed1polz,ed1uli7,ed1rgyr,ed2xzmn,ed1q7uk,ed1oght,ed210t3,ed1wfvz,ed1sv8s,ed2940o,ed2rpj7,ed1qf1q,ed1phob,ed2g38d,ed28m4z,ed1sqcj,ed1rdx0,eddw635,ed1l8qf,ed27eqm,ed1o638,ed1sb32,ed2ca7s,ed1ujtn,ed1rwhi,ed1tj1k,ed203ek,ed1w0p8,ed26mag,ed1uxil,ed2dr2l,ed2hqly,ed1ry5p,ed2bs7i,ed1zv7a,ed23aac,ed1tjso,ed1ozqh,ed2xfp8,ed23jbn,ed34eau,ed252ua,ed2n529,ed2tku9,ed1src4,ed1sx75,ed1ygny,ed1mcu4,ed2un7d,ed1uwma","hasMore":true}}},{"id":"ed1ap8n","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ap8n/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ap8n/","parentId":"t3_ablzuq","author":"NaziGazpacho","text":"It's all I have","renderedHtml":"<div class=\"md\"><p>It&#39;s all I have</p>\n</div>","score":46489,"upvotes":46489,"createdAt":"2019-01-01T21:07:31.000Z","createdUtc":1546376851,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1atyq","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1atyq/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1atyq/","parentId":"t1_ed1ap8n","author":"ShoddySubstance","text":"it's time to [let go](https://youtu.be/L0MK7qz13bU?t=67)\n\n**edit** reddit silver for a 2013 meme, what a time to be alive","renderedHtml":"<div class=\"md\"><p>it&#39;s time to <a href=\"https://youtu.be/L0MK7qz13bU?t=67\">let go</a></p>\n\n<p><strong>edit</strong> reddit silver for a 2013 meme, what a time to be alive</p>\n</div>","score":11616,"upvotes":11616,"createdAt":"2019-01-01T21:09:11.000Z","createdUtc":1546376951,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1bxue","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxue/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxue/","parentId":"t1_ed1atyq","author":"NaziGazpacho","text":"Will you pay me for it?","renderedHtml":"<div class=\"md\"><p>Will you pay me for it?</p>\n</div>","score":2597,"upvotes":2597,"createdAt":"2019-01-01T21:22:42.000Z","createdUtc":1546377762,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1cano","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cano/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cano/","parentId":"t1_ed1bxue","author":"Ollybringmemysword","text":"I don't do pay per poo.","renderedHtml":"<div class=\"md\"><p>I don&#39;t do pay per poo.</p>\n</div>","score":2777,"upvotes":2777,"createdAt":"2019-01-01T21:26:58.000Z","createdUtc":1546378018,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jyd7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jyd7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jyd7/","parentId":"t1_ed1cano","author":"Poem_for_your_sprog","text":"I will not give.  \nI will not go.  \nI will not drop the bait below.  \nI will not dump.  \nI will not do.  \nI will not force a number two.  \n\nI will not press.  \nI will not push.  \nI will not lay my puckered tush.   \nI will not pop  \na squat, to wit:  \nI will not shart.  \nI will not shit.\n\nMy stool is cool.  \nMy deuce is dear.  \nIt's all that's left of yesteryear.  \nYou think I will,  \nbut I will not.\n\nI must not poop.  \n\nIt's all I've got. ","renderedHtml":"<div class=\"md\"><p>I will not give.<br/>\nI will not go.<br/>\nI will not drop the bait below.<br/>\nI will not dump.<br/>\nI will not do.<br/>\nI will not force a number two.  </p>\n\n<p>I will not press.<br/>\nI will not push.<br/>\nI will not lay my puckered tush.<br/>\nI will not pop<br/>\na squat, to wit:<br/>\nI will not shart.<br/>\nI will not shit.</p>\n\n<p>My stool is cool.<br/>\nMy deuce is dear.<br/>\nIt&#39;s all that&#39;s left of yesteryear.<br/>\nYou think I will,<br/>\nbut I will not.</p>\n\n<p>I must not poop.  </p>\n\n<p>It&#39;s all I&#39;ve got. </p>\n</div>","score":7184,"upvotes":7184,"createdAt":"2019-01-01T23:09:23.000Z","createdUtc":1546384163,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kj0l","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj0l/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj0l/","parentId":"t1_ed1jyd7","author":"cuzman","text":"Someone give this guy a record deal. ","renderedHtml":"<div class=\"md\"><p>Someone give this guy a record deal. </p>\n</div>","score":942,"upvotes":942,"createdAt":"2019-01-01T23:17:13.000Z","createdUtc":1546384633,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lte0","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lte0/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lte0/","parentId":"t1_ed1kj0l","author":"space-wizard","text":"Trust me, sprog is gonna get a nice book deal out of this once he/she gives up the pen name. ","renderedHtml":"<div class=\"md\"><p>Trust me, sprog is gonna get a nice book deal out of this once he/she gives up the pen name. </p>\n</div>","score":360,"upvotes":360,"createdAt":"2019-01-01T23:34:59.000Z","createdUtc":1546385699,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1m0zz","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m0zz/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m0zz/","parentId":"t1_ed1lte0","author":"[deleted]","text":"[removed]","renderedHtml":"<div class=\"md\"><p>[removed]</p>\n</div>","score":154,"upvotes":154,"createdAt":"2019-01-01T23:37:53.000Z","createdUtc":1546385873,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1oqos","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1oqos/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1oqos/","parentId":"t1_ed1m0zz","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":90,"upvotes":90,"createdAt":"2019-01-02T00:14:55.000Z","createdUtc":1546388095,"depth":8,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1q11x,ed1pwij,ed1t47a,ed1pfwt,ed1pm5o,ed1pxwv,ed1qh1c,ed1sqxk","hasMore":true}}}],"page":{"nextCursor":"ed1qh7q,ed1mcjx,ed20v4r,ed1vrql","hasMore":true}}}],"page":{"nextCursor":"ed1pw3j,ehtquwo,ed1thnf","hasMore":true}}}],"page":{"nextCursor":"ed1mhxp,ed1mcxx,elnwdqi,ed1lw1j,ed1msee,ed1oes2,ed22is0,eeoate7","hasMore":true}}}],"page":{"nextCursor":"ed1kn18,ed1ks4v,ed1l8tb,ed1kpmx,ed1mlcs,ed1kyfv,ed1o2xz,ed1k8gw,ed1kyp8,ed1l217,ed1lwxx,ed1q89i,ed1qafr,ed1vn9r,ed1k3no,ed1kqgn,ed1kty4,ed1kzzb,ed1l47j,ed1l93i,ed1ldw4,ed1lfur,ed1llpf,ed1loen,ed1lweb,ed1lxed,ed1m4kv,ed1mcig,ed1mmca,ed1mxbh,ed1ne1p,ed1qkwc,ed1sh5m,ed1xhk7,ed22663,ed2jknf,edb6y79,ed1ko5e,ed1knwb,ed1kt67,ed1lckc,ed1leka,ed1lhh9,ed1lj2k,ed1lo9v,ed1lpb4,ed1lwnv,ed1m5kr,ed1mjrl,ed1mqmk,ed1mr2i,ed1n0qc,ed1n3p6,ed1nfpc,ed1nlxl,ed223ae,ed26wjb,ed287qd,ed2tb10,ei7090q,ee3bdb6,ed1ku4r,ed1kueb,ed1l2ji,ed1l48s,ed1l5yq,ed1l6u0,ed1l7de,ed1l8jh,ed1ld1c,ed1le1v,ed1lfbb,ed1lhwv,ed1lkcl,ed1ln99,ed1lpad,ed1lpes,ed1lpyd,ed1lwbm,ed1lwzy,ed1lymq,ed1m4tp,ed1m82f,ed1mloh,ed1mr8u,ed1n625,ed1noq9,ed1o4sj,ed1p40u,ed1p6ge,ed1pm6k,ed1pz8l,ed1q7tn,ed1qwi3,ed1r163,ed1stdr,ed1sxp3,ed1tgpo,ed1uh1y,ed299cy","hasMore":true}}},{"id":"ed1do23","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do23/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do23/","parentId":"t1_ed1cano","author":"NaziGazpacho","text":"Don't worry, I run on a subshitscion model","renderedHtml":"<div class=\"md\"><p>Don&#39;t worry, I run on a subshitscion model</p>\n</div>","score":264,"upvotes":264,"createdAt":"2019-01-01T21:44:08.000Z","createdUtc":1546379048,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1dtnk","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dtnk/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dtnk/","parentId":"t1_ed1do23","author":"CSThr0waway123","text":"Sounds like a pretty shitty deal","renderedHtml":"<div class=\"md\"><p>Sounds like a pretty shitty deal</p>\n</div>","score":156,"upvotes":156,"createdAt":"2019-01-01T21:46:09.000Z","createdUtc":1546379169,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1dzti","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dzti/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dzti/","parentId":"t1_ed1dtnk","author":"ShoddySubstance","text":"there's a shitflix deal being made right now","renderedHtml":"<div class=\"md\"><p>there&#39;s a shitflix deal being made right now</p>\n</div>","score":195,"upvotes":195,"createdAt":"2019-01-01T21:48:24.000Z","createdUtc":1546379304,"depth":6,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1e4n5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e4n5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e4n5/","parentId":"t1_ed1dzti","author":"CSThr0waway123","text":"This is the turd time i've heard this joke","renderedHtml":"<div class=\"md\"><p>This is the turd time i&#39;ve heard this joke</p>\n</div>","score":111,"upvotes":111,"createdAt":"2019-01-01T21:50:11.000Z","createdUtc":1546379411,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1io0r,ed1k85i,ed1xxzq,ed1i18e","hasMore":true}}}],"page":{"nextCursor":"ed1kbw7,ed1im4l,ed1jssz,ed1kmq3","hasMore":true}}}],"page":{"nextCursor":"ed1e19y","hasMore":true}}}],"page":{"nextCursor":"ed1i1yn,ed1l0av,ed1jah2,ed1jq67","hasMore":true}}}],"page":{"nextCursor":"ed1iu2f,ed1dsd0,ed1ko6b,eh3z14l","hasMore":true}}},{"id":"ed1cbyc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbyc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbyc/","parentId":"t1_ed1bxue","author":"ShoddySubstance","text":"the feeling of letting it go should be worth more to you than any monetary value that I could offer","renderedHtml":"<div class=\"md\"><p>the feeling of letting it go should be worth more to you than any monetary value that I could offer</p>\n</div>","score":86,"upvotes":86,"createdAt":"2019-01-01T21:27:23.000Z","createdUtc":1546378043,"depth":3,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1dj80","hasMore":true}}}],"page":{"nextCursor":"ed1i5ej,ed1j4a4,ed1ok3c,ed1iyrq,ed1jn8m,ed1jvqj,ed1kpc6,ed1m13n,ed1mgna","hasMore":true}}}],"page":{"nextCursor":"ed1ij8i,ed1iedy,ed1qdae,ed1kcpc,ed1mhz6,ed1r1ok,ed1kgl3,ed1m566,ed1mchm,ed1pe5d,ed1nji5,ed1i6vy,ed1jvza,ed1kp1z,ed1l2yt,ed1l6aa,ed1lc92,ed1n0u4,ed1qeky,ed2327a,eq90mxd,ed1j13l,ed1jk20,ed1jl39,ed1jrad,ed1jzat,ed1kgk9,ed1kn8x,ed1kucy,ed1kyvd,ed1l80d,ed1meux,ed1mjag,ed1mjvg,ed1mkfd,ed1n1vx,ed1tqrv,ed1vgwv,ed1zbw6,ed1zu8z,ed20s7i,ed20vnu,ed21dvk,ed21ski,ed223tt,ed22oci,ed22zlp,ed25eqs,ed27wlx,ed2k2aq,edrr38l,eezquun,eoufjn8","hasMore":true}}}],"page":{"nextCursor":"ed1iodi,ed1kwf6,ed1kofn,ed1zi0c,ed1k3eh,ed1ka5j,ed1kjzb,ed1izr3,hgqwfyr,ed1j8ou,ed1lp25,ed1lvu5,ed1musg,ed1ot8g,ed1vzq9,ed1xepr,ed1xwyo","hasMore":true}}},{"id":"ed1e9gm","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e9gm/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e9gm/","parentId":"t3_ablzuq","author":"[deleted]","text":"Quality shitpost ","renderedHtml":"<div class=\"md\"><p>Quality shitpost </p>\n</div>","score":25200,"upvotes":25200,"createdAt":"2019-01-01T21:51:55.000Z","createdUtc":1546379515,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1i9rb","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9rb/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9rb/","parentId":"t1_ed1e9gm","author":"Quinthyll","text":"I don't know, the content is really only about crap from last year.","renderedHtml":"<div class=\"md\"><p>I don&#39;t know, the content is really only about crap from last year.</p>\n</div>","score":4644,"upvotes":4644,"createdAt":"2019-01-01T22:46:13.000Z","createdUtc":1546382773,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jp43","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jp43/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jp43/","parentId":"t1_ed1i9rb","author":"CatchingRays","text":"Better than having the front page clogged with reposts. ","renderedHtml":"<div class=\"md\"><p>Better than having the front page clogged with reposts. </p>\n</div>","score":1158,"upvotes":1158,"createdAt":"2019-01-01T23:05:55.000Z","createdUtc":1546383955,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ktyw","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ktyw/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ktyw/","parentId":"t1_ed1jp43","author":"xenoguy1313","text":"This too shall pass. ","renderedHtml":"<div class=\"md\"><p>This too shall pass. </p>\n</div>","score":575,"upvotes":575,"createdAt":"2019-01-01T23:21:30.000Z","createdUtc":1546384890,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1nzp3,ed1xbh2,ed1mg8z,ed1plpm,ed1pz4b,ed1m2n2,ed1z6ci,ed1xu8i,ed2pt89","hasMore":true}}}],"page":{"nextCursor":"ed1kuij,ed1khqy,ed280pi,ed1m0bp,ed1ne8g,ed1ouq8,ed1pt3j,ed1tfpu","hasMore":true}}}],"page":{"nextCursor":"ed1nfu3,ed1q3z3,ed1rk3p,ed2rw89,ed1o7fo,ed1ogmf,ed1ooqn,ed1xszl,ed2o8i7","hasMore":true}}}],"page":{"nextCursor":"ed1lp8u,edexrk4,ed1jvdg,ed1kt1w,ed1lwpv,ed1m4a7,ed1p2hx,ed1ptv1,ed25za1,ed27ahu","hasMore":true}}},{"id":"ed1cm3u","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cm3u/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cm3u/","parentId":"t3_ablzuq","author":"PrinceofallRabbits","text":"I’m letting go right now as I type. ","renderedHtml":"<div class=\"md\"><p>I’m letting go right now as I type. </p>\n</div>","score":26559,"upvotes":26559,"createdAt":"2019-01-01T21:30:46.000Z","createdUtc":1546378246,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1crr7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1crr7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1crr7/","parentId":"t1_ed1cm3u","author":"ShoddySubstance","text":"Good, time to take that 2019 air in","renderedHtml":"<div class=\"md\"><p>Good, time to take that 2019 air in</p>\n</div>","score":12218,"upvotes":12218,"createdAt":"2019-01-01T21:32:37.000Z","createdUtc":1546378357,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ehha","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ehha/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ehha/","parentId":"t1_ed1crr7","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":2242,"upvotes":2242,"createdAt":"2019-01-01T21:54:44.000Z","createdUtc":1546379684,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1i754","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i754/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i754/","parentId":"t1_ed1ehha","author":"MorningredTimetravel","text":"You don't breathe through your butt?","renderedHtml":"<div class=\"md\"><p>You don&#39;t breathe through your butt?</p>\n</div>","score":1409,"upvotes":1409,"createdAt":"2019-01-01T22:45:12.000Z","createdUtc":1546382712,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ild4","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ild4/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ild4/","parentId":"t1_ed1i754","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":671,"upvotes":671,"createdAt":"2019-01-01T22:50:39.000Z","createdUtc":1546383039,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1k762","hasMore":true}}},{"id":"ed1ill4","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ill4/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ill4/","parentId":"t1_ed1i754","author":"ElBroet","text":"I dunno, I have the exhaling part pretty down ","renderedHtml":"<div class=\"md\"><p>I dunno, I have the exhaling part pretty down </p>\n</div>","score":193,"upvotes":193,"createdAt":"2019-01-01T22:50:44.000Z","createdUtc":1546383044,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1iqfl","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iqfl/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iqfl/","parentId":"t1_ed1ill4","author":"[deleted]","text":"More like a sneeze on my end. ","renderedHtml":"<div class=\"md\"><p>More like a sneeze on my end. </p>\n</div>","score":129,"upvotes":129,"createdAt":"2019-01-01T22:52:33.000Z","createdUtc":1546383153,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1iwkx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwkx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwkx/","parentId":"t1_ed1iqfl","author":"ElBroet","text":"Here a sort of liquid cough, tuberculoshits if you will","renderedHtml":"<div class=\"md\"><p>Here a sort of liquid cough, tuberculoshits if you will</p>\n</div>","score":174,"upvotes":174,"createdAt":"2019-01-01T22:54:55.000Z","createdUtc":1546383295,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1lcn4,ed1p245,ed2hzhk","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1in2t,ed1sp1i,ed1ooun,ed1lsku,ed228k4,ed1id1q,ed3pprb,ed1itjn,ed1ovjg,ed1pv74,ed1qshm,ed1s61r,ed1tm61,ed20ovg,ed262xc,ed29o67,ed2uwts","hasMore":true}}}],"page":{"nextCursor":"ed1jbm0,ed1jpq8,ed38qhi,ed1ly6s,ed1m5i4,ed1so3l,ed2q8oz","hasMore":true}}},{"id":"ed1ivp5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ivp5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ivp5/","parentId":"t1_ed1crr7","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":267,"upvotes":267,"createdAt":"2019-01-01T22:54:35.000Z","createdUtc":1546383275,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1modo,ed1pxep,ed2v155,ed1p5qf","hasMore":true}}}],"page":{"nextCursor":"ed1o5he,ed1keie,ed1klb4,ed1qw9l,ed1odpw,ed1po0h,ed1pv94,ed1uhm3","hasMore":true}}},{"id":"ed1imbh","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imbh/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imbh/","parentId":"t1_ed1cm3u","author":"swo30","text":"Yo same","renderedHtml":"<div class=\"md\"><p>Yo same</p>\n</div>","score":48,"upvotes":48,"createdAt":"2019-01-01T22:51:00.000Z","createdUtc":1546383060,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1umk6","hasMore":true}}},{"id":"ed1iixa","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iixa/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iixa/","parentId":"t1_ed1cm3u","author":"Maldetete","text":"Happy Cake & Poop Day!","renderedHtml":"<div class=\"md\"><p>Happy Cake &amp; Poop Day!</p>\n</div>","score":85,"upvotes":85,"createdAt":"2019-01-01T22:49:44.000Z","createdUtc":1546382984,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed2axw7","hasMore":true}}}],"page":{"nextCursor":"ed1ihg1,ed1irj8,ed1iua0,ed1lm16,ed1j68i,ed1kxhy,ed1ltu3,ed1mvax,ed1pk8u,ed2czhx,ed1iv3e,ed1j8ok,ed1jrpy,ed1m7wu,ed1myzf,ed1n3y8,ed1nqws,ed1oc6i,ed1pqm8,ed1qp74,ed1rait,ed1uo73,ed22ath,ed24you,ed2epsv,ed2oqsl,ed1ikk2,ed1iyk4,ed1jbva,ed1jder,ed1l5hh,ed1lwsg,ed1mh4n,ed1n08k,ed1nggs,ed1nnny,ed1nszp,ed1ntqx,ed1ohf0,ed1om16,ed1osnl,ed1oxvb,ed1p2jz,ed1ozo5,ed1pxfi,ed1q2xy,ed1qa01,ed1qkv3,ed1r8cr,ed1r8lv,ed1rb1x,ed1rn57,ed1sagc,ed1sd31,ed1sm3z,ed1t0h6,ed1uqxw,ed1vqqx,ed1yjoi,ed1zupz,ed242ss,ed2445x,ed26n4f,ed279dn,ed2glj5,ed2r9y5,ed2s6se,ed1jgyv,ed1jo6z,ed1jyij,ed1k4yd,ed1k70a,ed1kbuu,ed1l5bm,ed1lul4,ed1mrb6,ed1n0hf,ed1nnv9,ed1o5ih,ed1on51,ed1ovvo,ed1ozcg,ed1poca,ed1q3h7,ed1qj17,ed1qmg4,ed1r8ou,ed1rs91,ed1saxn,ed1sf3x,ed1sqk9,ed1sumv,ed1xru3,ed1z7zt,ed205xk,ed249ci,ed29dtt,ed2i9cm,ed3c588,eeoapb9","hasMore":true}}},{"id":"ed1e8bh","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e8bh/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e8bh/","parentId":"t3_ablzuq","author":"ThreeSheetzToTheWind","text":"\"Fuck you, I won't poo when you tell me\"","renderedHtml":"<div class=\"md\"><p>&quot;Fuck you, I won&#39;t poo when you tell me&quot;</p>\n</div>","score":28368,"upvotes":28368,"createdAt":"2019-01-01T21:51:31.000Z","createdUtc":1546379491,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k6a1","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k6a1/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k6a1/","parentId":"t1_ed1e8bh","author":"Krazekami","text":"Rage Against The Latrine\n\nEdit: I cant believe my first gold is a shitty pun. Thanks everyone and Happy New Year!","renderedHtml":"<div class=\"md\"><p>Rage Against The Latrine</p>\n\n<p>Edit: I cant believe my first gold is a shitty pun. Thanks everyone and Happy New Year!</p>\n</div>","score":16542,"upvotes":16542,"createdAt":"2019-01-01T23:12:23.000Z","createdUtc":1546384343,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lft1","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lft1/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lft1/","parentId":"t1_ed1k6a1","author":"FreakyRik","text":"That made me fucking laugh so hard. Why is this shit so funny, fuck I am such a manchild.\n\nedit: thanks for my first gold kind stranger, Happy new year!","renderedHtml":"<div class=\"md\"><p>That made me fucking laugh so hard. Why is this shit so funny, fuck I am such a manchild.</p>\n\n<p>edit: thanks for my first gold kind stranger, Happy new year!</p>\n</div>","score":5052,"upvotes":5052,"createdAt":"2019-01-01T23:29:48.000Z","createdUtc":1546385388,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1mack","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mack/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mack/","parentId":"t1_ed1lft1","author":"snerz","text":"I logged in just so could upvote it","renderedHtml":"<div class=\"md\"><p>I logged in just so could upvote it</p>\n</div>","score":763,"upvotes":763,"createdAt":"2019-01-01T23:41:29.000Z","createdUtc":1546386089,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ngre","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ngre/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ngre/","parentId":"t1_ed1mack","author":"Annoy_Occult_Vet","text":"I've been trying to logout since this morning.","renderedHtml":"<div class=\"md\"><p>I&#39;ve been trying to logout since this morning.</p>\n</div>","score":410,"upvotes":410,"createdAt":"2019-01-01T23:57:32.000Z","createdUtc":1546387052,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1nqgg","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nqgg/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nqgg/","parentId":"t1_ed1ngre","author":"commie_heathen","text":"So you're saying you haven't gotten a log out this year? ","renderedHtml":"<div class=\"md\"><p>So you&#39;re saying you haven&#39;t gotten a log out this year? </p>\n</div>","score":470,"upvotes":470,"createdAt":"2019-01-02T00:01:04.000Z","createdUtc":1546387264,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1s8h7,ed1rw8r,ed1num1,ed1o051,ed1ttux,ed1qozb","hasMore":true}}}],"page":{"nextCursor":"ed1nqhs,ed1tqkc,er90x5a,ed1p40n,ed23dsl,er90tsi","hasMore":true}}}],"page":{"nextCursor":"ed1q57e,ed1w7k3,ed1qshz","hasMore":true}}}],"page":{"nextCursor":"ed1rg8e,ed1s2av,ed1te9p,ed2mjfz,ejb2xrq,ed1paxo,ed1v5af,ed1w15d,ed1x5ir,ed24gyy,ed28tk8,ed2qpkx,eh2yj1e","hasMore":true}}},{"id":"ed1sqk2","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sqk2/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sqk2/","parentId":"t1_ed1k6a1","author":"majtommm","text":"Shitting in the Name Of","renderedHtml":"<div class=\"md\"><p>Shitting in the Name Of</p>\n</div>","score":84,"upvotes":84,"createdAt":"2019-01-02T01:11:42.000Z","createdUtc":1546391502,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1n8s7,ed1nk9q,ed1njf0,ed1rs0y,ed1o6g3,ed1r3ps,ed1nkum,ed2bbso,ed1nr98,ed1o0nw,ed1oiln,ed1skm7,ed1srar,ed1szl5,ed2bia5,eoufo85,ed1nkp0,ed1nssv,ed1o4ds,ed1r34d,ed1sdrj,ed1ycoa,ed1zsqc,ed23tv5","hasMore":true}}},{"id":"ed1jbzl","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jbzl/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jbzl/","parentId":"t1_ed1e8bh","author":"4apalehorse","text":"Bowels on Parade.","renderedHtml":"<div class=\"md\"><p>Bowels on Parade.</p>\n</div>","score":730,"upvotes":730,"createdAt":"2019-01-01T23:00:54.000Z","createdUtc":1546383654,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed272tf,ed1s3za,ed1ztir,ed1zz2z,ed1klva,ed1lsgl,ed24klm","hasMore":true}}},{"id":"ed1izvc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1izvc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1izvc/","parentId":"t1_ed1e8bh","author":"Samikotu","text":"\"And now you poop when they tell ya!\"","renderedHtml":"<div class=\"md\"><p>&quot;And now you poop when they tell ya!&quot;</p>\n</div>","score":1932,"upvotes":1932,"createdAt":"2019-01-01T22:56:11.000Z","createdUtc":1546383371,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1j2tx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j2tx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j2tx/","parentId":"t1_ed1izvc","author":"thehybridview","text":"THOSE WHO DIED","renderedHtml":"<div class=\"md\"><p>THOSE WHO DIED</p>\n</div>","score":988,"upvotes":988,"createdAt":"2019-01-01T22:57:21.000Z","createdUtc":1546383441,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jfsg","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jfsg/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jfsg/","parentId":"t1_ed1j2tx","author":"bman7653","text":"THEIR GUTS ARE FRIED","renderedHtml":"<div class=\"md\"><p>THEIR GUTS ARE FRIED</p>\n</div>","score":1020,"upvotes":1020,"createdAt":"2019-01-01T23:02:22.000Z","createdUtc":1546383742,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jpkl","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jpkl/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jpkl/","parentId":"t1_ed1jfsg","author":"NinetyArmhole","text":"THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN'T WHITE!","renderedHtml":"<div class=\"md\"><p>THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN&#39;T WHITE!</p>\n</div>","score":963,"upvotes":963,"createdAt":"2019-01-01T23:06:05.000Z","createdUtc":1546383965,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k1k8","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1k8/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1k8/","parentId":"t1_ed1jpkl","author":"turtlevader","text":"THEY JUSTIFY, THE EXTRA WIPE","renderedHtml":"<div class=\"md\"><p>THEY JUSTIFY, THE EXTRA WIPE</p>\n</div>","score":1015,"upvotes":1015,"createdAt":"2019-01-01T23:10:34.000Z","createdUtc":1546384234,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kj1k","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj1k/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj1k/","parentId":"t1_ed1k1k8","author":"[deleted]","text":"THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN'T WHITE, COME ON!\n\n**HUNGH!**","renderedHtml":"<div class=\"md\"><p>THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN&#39;T WHITE, COME ON!</p>\n\n<p><strong>HUNGH!</strong></p>\n</div>","score":768,"upvotes":768,"createdAt":"2019-01-01T23:17:14.000Z","createdUtc":1546384634,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ko6r","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ko6r/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ko6r/","parentId":"t1_ed1kj1k","author":"seazer818","text":"POOPING IN THE NAME OF!!","renderedHtml":"<div class=\"md\"><p>POOPING IN THE NAME OF!!</p>\n</div>","score":701,"upvotes":701,"createdAt":"2019-01-01T23:19:16.000Z","createdUtc":1546384756,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lewr","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lewr/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lewr/","parentId":"t1_ed1ko6r","author":"InfinityIsAnIllusion","text":"POOPING IN THE NAME OF!!\n\n","renderedHtml":"<div class=\"md\"><p>POOPING IN THE NAME OF!!</p>\n</div>","score":533,"upvotes":533,"createdAt":"2019-01-01T23:29:27.000Z","createdUtc":1546385367,"depth":8,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lot4","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lot4/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lot4/","parentId":"t1_ed1lewr","author":"xjeeper","text":"/r/rageagainstthetoilet","renderedHtml":"<div class=\"md\"><p><a href=\"/r/rageagainstthetoilet\">/r/rageagainstthetoilet</a></p>\n</div>","score":234,"upvotes":234,"createdAt":"2019-01-01T23:33:13.000Z","createdUtc":1546385593,"depth":9,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1nghx,ed1z6nb,ed21chs,ed1mfb1,ed23y1c,ed1n5ed","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1ltw8","hasMore":true}}},{"id":"ed1kmq8","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kmq8/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kmq8/","parentId":"t1_ed1k1k8","author":"RazgrizS57","text":"BY CHECKING THE PLY TO SEE IT'S WHITE","renderedHtml":"<div class=\"md\"><p>BY CHECKING THE PLY TO SEE IT&#39;S WHITE</p>\n</div>","score":102,"upvotes":102,"createdAt":"2019-01-01T23:18:41.000Z","createdUtc":1546384721,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"ed1k1sv","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1sv/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1sv/","parentId":"t1_ed1jpkl","author":"tomatoaway","text":"THOSE WHO TRIED","renderedHtml":"<div class=\"md\"><p>THOSE WHO TRIED</p>\n</div>","score":68,"upvotes":68,"createdAt":"2019-01-01T23:10:40.000Z","createdUtc":1546384240,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1kxqc","hasMore":true}}}],"page":{"nextCursor":"ed1p884","hasMore":true}}}],"page":{"nextCursor":"ed1ldc9,ed1jtsc","hasMore":true}}}],"page":{"nextCursor":"ed1ji3t,ed1jlwc","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"ed1j6cu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j6cu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j6cu/","parentId":"t1_ed1e8bh","author":"[deleted]","text":"Ahh, everyone's favorite RATM song, Pooping in the Name","renderedHtml":"<div class=\"md\"><p>Ahh, everyone&#39;s favorite RATM song, Pooping in the Name</p>\n</div>","score":273,"upvotes":273,"createdAt":"2019-01-01T22:58:43.000Z","createdUtc":1546383523,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1n12a,ed1lopn,ed1l8mx","hasMore":true}}},{"id":"ed1iyzx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iyzx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iyzx/","parentId":"t1_ed1e8bh","author":"[deleted]","text":"MOTHER FUCKER!","renderedHtml":"<div class=\"md\"><p>MOTHER FUCKER!</p>\n</div>","score":132,"upvotes":132,"createdAt":"2019-01-01T22:55:51.000Z","createdUtc":1546383351,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1pg4z,ed1jvon","hasMore":true}}}],"page":{"nextCursor":"ed1fet1,ed1jvvo,ed1j2tm,ed1j7n4,ed1jfi1,ed1kita,ed1jbsc,ed1jthm,ed1q2r6,ed1necp,ed1jd2g,ed1jjyc,ed1leuo,ed1nf6v,ed1v1u9,ed2n54p,ed1p43v,ed1jz3x,ed1mzbq,ed1nkbj,ed1ol9m,ed1s40v,ed1zt41,ed1jg0i,ed1js02,ed1jz06,ed1l3n0,ed1lsrf,ed1lt2z,ed1lva4,ed1lze1,ed1muek,ed1mulp,ed1q330,ed20hqy,ed20z4q,ejb2wj6,ejztpcg","hasMore":true}}},{"id":"ed1c2wr","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c2wr/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c2wr/","parentId":"t3_ablzuq","author":"Lady_Minuit","text":"Everyone now thinking about the last time they pooped. Nicely played. ","renderedHtml":"<div class=\"md\"><p>Everyone now thinking about the last time they pooped. Nicely played. </p>\n</div>","score":26825,"upvotes":26825,"createdAt":"2019-01-01T21:24:24.000Z","createdUtc":1546377864,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1iu15","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iu15/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iu15/","parentId":"t1_ed1c2wr","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":3029,"upvotes":3029,"createdAt":"2019-01-01T22:53:56.000Z","createdUtc":1546383236,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jeos","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jeos/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jeos/","parentId":"t1_ed1iu15","author":"SWGlassPit","text":"The old spicy twicey.","renderedHtml":"<div class=\"md\"><p>The old spicy twicey.</p>\n</div>","score":2640,"upvotes":2640,"createdAt":"2019-01-01T23:01:56.000Z","createdUtc":1546383716,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jnqy","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jnqy/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jnqy/","parentId":"t1_ed1jeos","author":"high_on_eucalyptus","text":"I now know my new favorite phrase for Thai. Thank you stranger ","renderedHtml":"<div class=\"md\"><p>I now know my new favorite phrase for Thai. Thank you stranger </p>\n</div>","score":552,"upvotes":552,"createdAt":"2019-01-01T23:05:24.000Z","createdUtc":1546383924,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k1eg","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1eg/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1eg/","parentId":"t1_ed1jnqy","author":"a_fish_out_of_water","text":"God I love this site ","renderedHtml":"<div class=\"md\"><p>God I love this site </p>\n</div>","score":183,"upvotes":183,"createdAt":"2019-01-01T23:10:30.000Z","createdUtc":1546384230,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1z7x1,ed21lsc,ed1ll7t","hasMore":true}}}],"page":{"nextCursor":"ed1q0cs","hasMore":true}}},{"id":"ed1jte2","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jte2/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jte2/","parentId":"t1_ed1jeos","author":"OjamaBoy","text":"And to think that if I decided to start scrolling through reddit just 5 minutes earlier, I may never have read this absolute glorious phrase.","renderedHtml":"<div class=\"md\"><p>And to think that if I decided to start scrolling through reddit just 5 minutes earlier, I may never have read this absolute glorious phrase.</p>\n</div>","score":278,"upvotes":278,"createdAt":"2019-01-01T23:07:32.000Z","createdUtc":1546384052,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1q4wc","hasMore":true}}}],"page":{"nextCursor":"ed1ka0c,ed1ns7t,ed1knpb,ed29jy0,ed1jtd6,ed1o0sy,ed1o3xi,ed1p3xb,ed1purv,ed1qct0,ed1tjcw,ed1xe0u,ed22ttj","hasMore":true}}},{"id":"ed1jryu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jryu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jryu/","parentId":"t1_ed1iu15","author":"Judazzz","text":"\"*And it burns, burns, burns! The ring of fire, the ring of fire.*\"","renderedHtml":"<div class=\"md\"><p>&quot;<em>And it burns, burns, burns! The ring of fire, the ring of fire.</em>&quot;</p>\n</div>","score":249,"upvotes":249,"createdAt":"2019-01-01T23:07:00.000Z","createdUtc":1546384020,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1k3g1,ed1l7rs,ed1jmor,ed1ka2s,ed1kb3i,ed1kbnl,ed1nqm4,ed1osyl,ed1k8kk,ed1kmxs,ed1kn1p,ed1unyi,ed1jndm,ed1k0rj,ed77k97,ed1k79j,ed1k7hj,ed1kn9j,ed1kqbl,ed1m0yz,ed1meh5,ed1myz6,ed1nsvg,ed1o1je,ed1plqp,ed1q0y5,ed1q3b5,ed1qy53,ed1teb1,ed1zg9b,ed1zjlb,ed21t58,ed2cxn6,ed2lgvq,ed2qkcu,ed39683","hasMore":true}}},{"id":"ed1dihq","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dihq/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dihq/","parentId":"t1_ed1c2wr","author":"ffs_fml","text":"What a shitty thought ","renderedHtml":"<div class=\"md\"><p>What a shitty thought </p>\n</div>","score":3788,"upvotes":3788,"createdAt":"2019-01-01T21:42:10.000Z","createdUtc":1546378930,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1isrc,ed1j5yg,ed1otrx,ed1is9g,ed1isdf,ed1jb59,ed1lg5u,ed1nfa8","hasMore":true}}},{"id":"ed1idhu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1idhu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1idhu/","parentId":"t1_ed1c2wr","author":"dcristo","text":"When you have a caffeine addiction you don't need to think that far back.","renderedHtml":"<div class=\"md\"><p>When you have a caffeine addiction you don&#39;t need to think that far back.</p>\n</div>","score":399,"upvotes":399,"createdAt":"2019-01-01T22:47:37.000Z","createdUtc":1546382857,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jcse","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jcse/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jcse/","parentId":"t1_ed1idhu","author":"tokomini","text":"Is it all caffeine, or just coffee? Because I don't think that pop or energy drinks have the same effect on me. I definitely pee a lot more. But I think it's just coffee that makes me punish the porcelain. That and throwing in a chew. Why am I typing all this out. ","renderedHtml":"<div class=\"md\"><p>Is it all caffeine, or just coffee? Because I don&#39;t think that pop or energy drinks have the same effect on me. I definitely pee a lot more. But I think it&#39;s just coffee that makes me punish the porcelain. That and throwing in a chew. Why am I typing all this out. </p>\n</div>","score":234,"upvotes":234,"createdAt":"2019-01-01T23:01:13.000Z","createdUtc":1546383673,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jx9i","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jx9i/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jx9i/","parentId":"t1_ed1jcse","author":"winner_in_life","text":"Some types of coffee makes me poop almost immediately. But not all.","renderedHtml":"<div class=\"md\"><p>Some types of coffee makes me poop almost immediately. But not all.</p>\n</div>","score":52,"upvotes":52,"createdAt":"2019-01-01T23:08:59.000Z","createdUtc":1546384139,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ou07","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ou07/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ou07/","parentId":"t1_ed1jx9i","author":"breadstickfever","text":"Hot drip coffee is like this for me. A single cup makes me poop like 4 times a day when I normally poop about once every other day. Therefore I tend to avoid it unless I need a good thorough clean out (which, granted, can be very satisfying if I have a free day for it).","renderedHtml":"<div class=\"md\"><p>Hot drip coffee is like this for me. A single cup makes me poop like 4 times a day when I normally poop about once every other day. Therefore I tend to avoid it unless I need a good thorough clean out (which, granted, can be very satisfying if I have a free day for it).</p>\n</div>","score":35,"upvotes":35,"createdAt":"2019-01-02T00:16:15.000Z","createdUtc":1546388175,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1vw9c,ed333bk","hasMore":true}}}],"page":{"nextCursor":"ed2spry","hasMore":true}}}],"page":{"nextCursor":"ed1ko47,ed1k28r,ed1jvux,ed1nsbq,ed1ko5c,ed1qls7,ed28ge7,ed1k4d6,ed1k7y4,ed1kijg,ef5apor,ed1ty1f,ed1ulmw,ed22307,ed26ftk,ed3djax","hasMore":true}}}],"page":{"nextCursor":"ed1izhy,ed1j2qe,ed24wh9,ed1ljr8","hasMore":true}}},{"id":"ed1ih2x","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ih2x/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ih2x/","parentId":"t1_ed1c2wr","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":63,"upvotes":63,"createdAt":"2019-01-01T22:49:01.000Z","createdUtc":1546382941,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1k28n,ed2gnhq,ed1jjwd,ed21pss","hasMore":true}}}],"page":{"nextCursor":"ed1iw3g,ed1o8i7,ed1iws1,ed1koab,ed1j6gx,ed1jyx6,ed1izet,ed1kqd8,ed1w4kd,ed1isrp,ed1j5ng,ed1ol5h,ed235tq,ed1ipnj,eiiduhd,ed1jbsw,ed1jiwc,ed1juw5,ed1jx45,ed1k0s2,ed1k1jt,ed1k206,ed1k349,ed1k3vl,ed1k44p,ed1k599,ed1kcdp,ed1kqxi,ed1kwsz,ed1kwyd,ed1l1ei,ed1lfm8,ed1lwd3,ed1m30x,ed1m3sj,ed1n411,ed1np60,ed1o60w,ed1olon,ed1oqy8,ed1ps6x,ed1pzti,ed1qddy,ed1qhds,ed1r3dt,ed1rtpq,ed1swem,ed1upys,ed1ut7t,ed1v6de,ed1w0uy,ed22ei8,ed23com,ed23wb4,ed27n9q,ed28dy5,ed2nkhz,ed2rwwf","hasMore":true}}},{"id":"ed1b3m0","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b3m0/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b3m0/","parentId":"t3_ablzuq","author":"TitanicByMyself","text":"I do what I want, buddy.","renderedHtml":"<div class=\"md\"><p>I do what I want, buddy.</p>\n</div>","score":1361,"upvotes":1361,"createdAt":"2019-01-01T21:12:15.000Z","createdUtc":1546377135,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1bijh","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bijh/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bijh/","parentId":"t1_ed1b3m0","author":"ShoddySubstance","text":"it's not good to hold on to things for too long","renderedHtml":"<div class=\"md\"><p>it&#39;s not good to hold on to things for too long</p>\n</div>","score":654,"upvotes":654,"createdAt":"2019-01-01T21:17:22.000Z","createdUtc":1546377442,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ilji","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ilji/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ilji/","parentId":"t1_ed1bijh","author":"thrattatarsha","text":"Tell that to my Les Paul in 60 years.","renderedHtml":"<div class=\"md\"><p>Tell that to my Les Paul in 60 years.</p>\n</div>","score":168,"upvotes":168,"createdAt":"2019-01-01T22:50:43.000Z","createdUtc":1546383043,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k799","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k799/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k799/","parentId":"t1_ed1ilji","author":"tomatoaway","text":"> Les Paul\n\nFor those who don't know: A Les Paul is a type of lesbian guitar","renderedHtml":"<div class=\"md\"><blockquote>\n<p>Les Paul</p>\n</blockquote>\n\n<p>For those who don&#39;t know: A Les Paul is a type of lesbian guitar</p>\n</div>","score":250,"upvotes":250,"createdAt":"2019-01-01T23:12:46.000Z","createdUtc":1546384366,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1mbfz,ed1m206,ed1xur1,ed3xxi9","hasMore":true}}}],"page":{"nextCursor":"ed1jxh4,ed1k31x,ed1m0io","hasMore":true}}}],"page":{"nextCursor":"ed1l7fc,ed1x0fr","hasMore":true}}}],"page":{"nextCursor":"ed1bquc,ed1vlbu,ed1l5gd","hasMore":true}}},{"id":"ed1dcgu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dcgu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dcgu/","parentId":"t3_ablzuq","author":"DadAsFuck","text":"i’m constipated \n\nEdit: Free Bobby Shmurda","renderedHtml":"<div class=\"md\"><p>i’m constipated </p>\n\n<p>Edit: Free Bobby Shmurda</p>\n</div>","score":20413,"upvotes":20413,"createdAt":"2019-01-01T21:40:00.000Z","createdUtc":1546378800,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1dfds","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dfds/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dfds/","parentId":"t1_ed1dcgu","author":"ShoddySubstance","text":"**F**","renderedHtml":"<div class=\"md\"><p><strong>F</strong></p>\n</div>","score":5280,"upvotes":5280,"createdAt":"2019-01-01T21:41:04.000Z","createdUtc":1546378864,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1dle6","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dle6/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dle6/","parentId":"t1_ed1dfds","author":"DadAsFuck","text":"F","renderedHtml":"<div class=\"md\"><p>F</p>\n</div>","score":1527,"upvotes":1527,"createdAt":"2019-01-01T21:43:12.000Z","createdUtc":1546378992,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ek7p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ek7p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ek7p/","parentId":"t1_ed1dle6","author":"[deleted]","text":"F","renderedHtml":"<div class=\"md\"><p>F</p>\n</div>","score":1005,"upvotes":1005,"createdAt":"2019-01-01T21:55:42.000Z","createdUtc":1546379742,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1f8wx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f8wx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f8wx/","parentId":"t1_ed1ek7p","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":840,"upvotes":840,"createdAt":"2019-01-01T22:04:42.000Z","createdUtc":1546380282,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1j5ac,ed1n2rl,ed1r7dq,ed1nier,ed1i7an,ed1ky76","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed2akf3,ed1jij9","hasMore":true}}}],"page":{"nextCursor":"ed1l72j,ed1n5io,ed1jjf9,ed1q5ck,ed1k1eh,ed1k40n,ed1ljqv,ed1lo7t,ed1looa","hasMore":true}}},{"id":"ed1j0f9","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j0f9/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j0f9/","parentId":"t1_ed1dcgu","author":"IceePirate1","text":"Just down a big bottle of tobacco, should clear ya right up. Or these brownies my roommate made, they are really delicious\n\nEdit: Yes I know, I'm not changing it though","renderedHtml":"<div class=\"md\"><p>Just down a big bottle of tobacco, should clear ya right up. Or these brownies my roommate made, they are really delicious</p>\n\n<p>Edit: Yes I know, I&#39;m not changing it though</p>\n</div>","score":677,"upvotes":677,"createdAt":"2019-01-01T22:56:24.000Z","createdUtc":1546383384,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jjqr","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jjqr/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jjqr/","parentId":"t1_ed1j0f9","author":"LerxstFan","text":"Did you mean Tabasco? I’m choking trying to swallow this tobacco. ","renderedHtml":"<div class=\"md\"><p>Did you mean Tabasco? I’m choking trying to swallow this tobacco. </p>\n</div>","score":927,"upvotes":927,"createdAt":"2019-01-01T23:03:52.000Z","createdUtc":1546383832,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jku2","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jku2/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jku2/","parentId":"t1_ed1jjqr","author":"IceePirate1","text":"Both should work","renderedHtml":"<div class=\"md\"><p>Both should work</p>\n</div>","score":319,"upvotes":319,"createdAt":"2019-01-01T23:04:16.000Z","createdUtc":1546383856,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k4lu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k4lu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k4lu/","parentId":"t1_ed1jku2","author":"a_fish_out_of_water","text":"Either one is gonna hurt on the way out ","renderedHtml":"<div class=\"md\"><p>Either one is gonna hurt on the way out </p>\n</div>","score":143,"upvotes":143,"createdAt":"2019-01-01T23:11:44.000Z","createdUtc":1546384304,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1lvr5,ed1m5fk,ed1mu7d","hasMore":true}}}],"page":{"nextCursor":"ed1lids,ed1t5up","hasMore":true}}}],"page":{"nextCursor":"ed1kvsl,ed1s0lo,ed1k1mq,ed1lvrd,ed1mi83,ed1ofhu,ed1ovzl,ed1yauo","hasMore":true}}}],"page":{"nextCursor":"ed1jp57,ed1kb01,ed1melc,ed1lliw,ed2nkkr,ed1m54r,ed1qnd5","hasMore":true}}},{"id":"ed1jdgx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdgx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdgx/","parentId":"t1_ed1dcgu","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":72,"upvotes":72,"createdAt":"2019-01-01T23:01:28.000Z","createdUtc":1546383688,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1xppo,ed20ax8","hasMore":true}}},{"id":"ed1j9xv","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j9xv/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j9xv/","parentId":"t1_ed1dcgu","author":"ofteno","text":"I'm the same, it fucking sucks, couldn't enjoy last night party because of it","renderedHtml":"<div class=\"md\"><p>I&#39;m the same, it fucking sucks, couldn&#39;t enjoy last night party because of it</p>\n</div>","score":150,"upvotes":150,"createdAt":"2019-01-01T23:00:06.000Z","createdUtc":1546383606,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1lco7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lco7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lco7/","parentId":"t1_ed1j9xv","author":"PartTimeVelociraptor","text":"Same here. 😖 There's dozens of us!","renderedHtml":"<div class=\"md\"><p>Same here. 😖 There&#39;s dozens of us!</p>\n</div>","score":27,"upvotes":27,"createdAt":"2019-01-01T23:28:37.000Z","createdUtc":1546385317,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1llv6","hasMore":true}}}],"page":{"nextCursor":"ed1mvr0,ed1lqie,ed1nll3,ed1mo2y,ed1lxdj","hasMore":true}}},{"id":"ed1jda5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jda5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jda5/","parentId":"t1_ed1dcgu","author":"Shitty_poop_stain","text":"Fiber, coffee, laxatives, repeat.","renderedHtml":"<div class=\"md\"><p>Fiber, coffee, laxatives, repeat.</p>\n</div>","score":133,"upvotes":133,"createdAt":"2019-01-01T23:01:24.000Z","createdUtc":1546383684,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1jm9j,ed1q24a,ed1wb8z,ed1rst6,ed1ok2m,ed20xqv","hasMore":true}}}],"page":{"nextCursor":"ed1jqll,ed1lzah,ed1j4lx,ed1n6c3,ed1jsih,ed1l4dj,ed1nbvt,ed1zzba,ed1k2a9,ed1l39y,ed1l9rv,ed1nr0s,ed1uxlr,ed29aur,ed1ijlm,ed1jssa,ed1jx4f,ed1kumd,ed1l4ou,ed1m715,ed1npsk,ed1nvs7,ed1ke3c,ed1l1oc,ed1md9l,ed1ns2e,ed2lkk6,ed2ck3c,edahih0,ed1in8e,ed1jdxb,ed1k266,ed1ki6s,ed1kmzd,ed1kvzx,ed1kzhh,ed1l413,ed1l43o,ed1l5pm,ed1l7z7,ed1ljkc,ed1lmbi,ed1lpvu,ed1lq2h,ed1lq90,ed1lr2q,ed1ltuo,ed1lvf1,ed1ly0h,ed1lybc,ed1m0pe,ed1m59q,ed1m5sl,ed1mbxx,ed1mhnc,ed1mj9g,ed1mjjk,ed1mkqe,ed1n378,ed1nb5y,ed1ndnh,ed1ne1m,ed1npk5,ed1nqli,ed1nuz3,ed1nw8a,ed1o14j,ed1oc5b,ed1omz4,ed1ozq2,ed1p2gb,ed1ppoo,ed1ptif,ed1ptws,ed1py8p,ed1q0d9,ed1q6h9,ed1r2qr,ed1rdlu,ed1rvks,ed1s76n,ed1svnc,ed1t42j,ed1tpg5,ed1tw7b,ed1vvld,ed1xbtk,ed1xvtx,ed248ph,ed27vyd,ed29cyi,ed2ljml,ed2objz","hasMore":true}}},{"id":"ed1cmb8","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cmb8/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cmb8/","parentId":"t3_ablzuq","author":"_iPood_","text":"Waiting for the Apple Store to open","renderedHtml":"<div class=\"md\"><p>Waiting for the Apple Store to open</p>\n</div>","score":2989,"upvotes":2989,"createdAt":"2019-01-01T21:30:50.000Z","createdUtc":1546378250,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1cyes","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cyes/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cyes/","parentId":"t1_ed1cmb8","author":"[deleted]","text":"[removed]","renderedHtml":"<div class=\"md\"><p>[removed]</p>\n</div>","score":1304,"upvotes":1304,"createdAt":"2019-01-01T21:34:57.000Z","createdUtc":1546378497,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1j8zn,ed1kehe","hasMore":true}}},{"id":"ed1cvap","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cvap/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cvap/","parentId":"t1_ed1cmb8","author":"ShoddySubstance","text":"going to be waiting for a while, want me to send a care package?","renderedHtml":"<div class=\"md\"><p>going to be waiting for a while, want me to send a care package?</p>\n</div>","score":409,"upvotes":409,"createdAt":"2019-01-01T21:33:51.000Z","createdUtc":1546378431,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed21rzp","hasMore":true}}}],"page":{"nextCursor":"ed1jnka,ed1jbie,ed1lblx,ed1lc34","hasMore":true}}},{"id":"ed1dp7k","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dp7k/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dp7k/","parentId":"t3_ablzuq","author":"Fushigibama","text":"Let’s see who can go the longest in 2019 without taking a shit\n\nEdit: This blew up..","renderedHtml":"<div class=\"md\"><p>Let’s see who can go the longest in 2019 without taking a shit</p>\n\n<p>Edit: This blew up..</p>\n</div>","score":15839,"upvotes":15839,"createdAt":"2019-01-01T21:44:32.000Z","createdUtc":1546379072,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1j1yj","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j1yj/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j1yj/","parentId":"t1_ed1dp7k","author":"[deleted]","text":"r/opiates is probably gonna win that one. ","renderedHtml":"<div class=\"md\"><p><a href=\"/r/opiates\">r/opiates</a> is probably gonna win that one. </p>\n</div>","score":13722,"upvotes":13722,"createdAt":"2019-01-01T22:57:00.000Z","createdUtc":1546383420,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1p3mm","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1p3mm/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1p3mm/","parentId":"t1_ed1j1yj","author":"Mermaidfishbitch","text":"Yeah... I'm on Oxycodone because I had my tonsils taken out. Haven't pooped in 7 days... I don't feel constipated though. I've been on mostly a liquid diet.","renderedHtml":"<div class=\"md\"><p>Yeah... I&#39;m on Oxycodone because I had my tonsils taken out. Haven&#39;t pooped in 7 days... I don&#39;t feel constipated though. I&#39;ve been on mostly a liquid diet.</p>\n</div>","score":3797,"upvotes":3797,"createdAt":"2019-01-02T00:20:06.000Z","createdUtc":1546388406,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1qmkp","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1qmkp/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1qmkp/","parentId":"t1_ed1p3mm","author":"porky2468","text":"I was on morphine (after breaking my leg and having surgery) for a week without any laxatives. I think it was 7-10 days before I pooped and it was horrible!!! At one point I couldn't push anymore and my butt tried sucking it back up. Had to break that shit off because I'd gone through so much trying to get it out. \n\nFor my following surgery I was on oxy and made sure I was given laxatives. I did not want to go through that again. ","renderedHtml":"<div class=\"md\"><p>I was on morphine (after breaking my leg and having surgery) for a week without any laxatives. I think it was 7-10 days before I pooped and it was horrible!!! At one point I couldn&#39;t push anymore and my butt tried sucking it back up. Had to break that shit off because I&#39;d gone through so much trying to get it out. </p>\n\n<p>For my following surgery I was on oxy and made sure I was given laxatives. I did not want to go through that again. </p>\n</div>","score":1865,"upvotes":1865,"createdAt":"2019-01-02T00:41:27.000Z","createdUtc":1546389687,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1rqvd","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rqvd/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rqvd/","parentId":"t1_ed1qmkp","author":"[deleted]","text":"[removed]","renderedHtml":"<div class=\"md\"><p>[removed]</p>\n</div>","score":1820,"upvotes":1820,"createdAt":"2019-01-02T00:57:29.000Z","createdUtc":1546390649,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1rs6p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rs6p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rs6p/","parentId":"t1_ed1rqvd","author":"porky2468","text":"Man, I wish I'd had a poop knife!","renderedHtml":"<div class=\"md\"><p>Man, I wish I&#39;d had a poop knife!</p>\n</div>","score":752,"upvotes":752,"createdAt":"2019-01-02T00:58:01.000Z","createdUtc":1546390681,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1sq2a","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sq2a/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sq2a/","parentId":"t1_ed1rs6p","author":"scatTURDaye","text":"Since it's still inside I would recommend a poop spoon.  You have less chance of damaging your poop hole.","renderedHtml":"<div class=\"md\"><p>Since it&#39;s still inside I would recommend a poop spoon.  You have less chance of damaging your poop hole.</p>\n</div>","score":685,"upvotes":685,"createdAt":"2019-01-02T01:11:31.000Z","createdUtc":1546391491,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1t704","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t704/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t704/","parentId":"t1_ed1sq2a","author":"somecow","text":"Or just a shop vac. Go hard or go home.","renderedHtml":"<div class=\"md\"><p>Or just a shop vac. Go hard or go home.</p>\n</div>","score":655,"upvotes":655,"createdAt":"2019-01-02T01:18:20.000Z","createdUtc":1546391900,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1w27i","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1w27i/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1w27i/","parentId":"t1_ed1t704","author":"Arkose07","text":"You’re just one shop vac accident away from anal prolapse.","renderedHtml":"<div class=\"md\"><p>You’re just one shop vac accident away from anal prolapse.</p>\n</div>","score":349,"upvotes":349,"createdAt":"2019-01-02T02:00:14.000Z","createdUtc":1546394414,"depth":8,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1wdg0","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wdg0/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wdg0/","parentId":"t1_ed1w27i","author":"Painting_Agency","text":"I saw a video once where this... no, never mind.","renderedHtml":"<div class=\"md\"><p>I saw a video once where this... no, never mind.</p>\n</div>","score":171,"upvotes":171,"createdAt":"2019-01-02T02:04:53.000Z","createdUtc":1546394693,"depth":9,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"ed1xfw5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1xfw5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1xfw5/","parentId":"t1_ed1w27i","author":"[deleted]","text":"Who said it was an accident? ","renderedHtml":"<div class=\"md\"><p>Who said it was an accident? </p>\n</div>","score":35,"upvotes":35,"createdAt":"2019-01-02T02:20:31.000Z","createdUtc":1546395631,"depth":9,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1yath,ed2cu1p","hasMore":true}}}],"page":{"nextCursor":"ed1x5yv,ed1ww4d,ed21nfj,ed1zlu5,ed2che3,ed25hu1","hasMore":true}}}],"page":{"nextCursor":"ed1tqd0,ed1srw0,ed1wb3f,ed1vnrw,ed1wc3n,ed1wr63,ed1xqb5,ed1x52f,ed1z7v8,ed2na3o,ed1ycnx,ed1zr87,ed1zwhk,ed22jf5,ed24c02","hasMore":true}}}],"page":{"nextCursor":"ed1y41k,ed1xtoc,ed2006k,ed1tz92,ed26rh6,ed270d5,ed29gfr","hasMore":true}}}],"page":{"nextCursor":"ed1w6l3,ed1w7ok,ed1tj6u,ed1wg7o,ed1u4d4,ed1wjz0,ed1wzf1,ed20giv,ed21pxu,ed1szpz,ed1xgrj,ed1xnz6,ed2187a,ed222kn,ed22tzj,ed28o39,ed2ckat,ed1u2e4,ed20frc,ed20hu7,ed20trh,ed2475g,ed24gie,ed27kna,ed27le9,ed2893q","hasMore":true}}}],"page":{"nextCursor":"ed1u588,ed1tn9r,ed1ukek,ed1tgef,ed1vqma,ed224oc,ed1z5zu,ed1wsa7,ed21l7s,ed22dtq,ed1u1aq,ed1wtyj,ed1ylp4,ed20bp8,ed23dc4,ed243sh,ed26fqd,ed1uzhx,ed2a3o4,ed1xuw6,ed1yq45,ed1yvkc,ed1zbge,ed25ndt,ed282yf,ed2942a","hasMore":true}}}],"page":{"nextCursor":"ed1qtcb,ed1tl3i,ed1xtg8,ed1shzg,ed20g4g,ed1q1yy,ed1uwq0,ed1va4v,ed1w1f6,ed1tp8a,ed1x0fu,ed1zgp3,ed1sufg,ed2bfig,ed1tyah,ed1ue1r,ed1vsi3,ed1vu8p,ed1w74u,ed1wdl8,ed1wvy7,ed1yof2,ed1ywpn,ed20ji1,ed20wbe,ed210mp,ed212is,ed218l9,ed21df3,ed21e0n,ed21egs,ed21plj,ed223gf,ed224i7,ed2268e,ed227fr,ed22d07,ed23len,ed23m22,ed23qjb,ed24ftu,ed253xh,ed254i5,ed25unh,ed28cn3,ed28cov,ed28qkb,ed29kla,ed29vpi,ed2a8fu,ed2bcc0,ed2be4p,ed2bf64","hasMore":true}}}],"page":{"nextCursor":"ed1qgvt,ed1wo4n,ed1qny5,ed1urnw,ed1uq5h,ed1vre3,ed21o2f,ed21u4f,ed25wmt,ed1mlp0,ed1uayu,ed1vxow,ed2200b,ed26s7h,ed1u4j0,ed1u98l,ed1urg4,ed1wfv7,ed1rx36,ed1tz0i,ed1u2qz,ed1v0ho,ed1v50h,ed1wnoi,ed2tk4u,ed1x0pf,ed1xdad,ed1ymfz,ed1yt5s,ed1z3i7,ed1zg7x,ed1zx72,ed21p08,ed21p60,ed2226p,ed22hnm,ed243q6,ed24ogn,ed253ak,ed26evy,ed27mik,ed29832,ed2b6e8,ed2tjpn","hasMore":true}}},{"id":"ed1in4r","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1in4r/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1in4r/","parentId":"t1_ed1dp7k","author":"HillarysDoubleChin","text":"I remember when I went to camp as a kid, I didn't poop the entire time. 1 full week. I didn't even know that was possible, but I just didn't have to go.","renderedHtml":"<div class=\"md\"><p>I remember when I went to camp as a kid, I didn&#39;t poop the entire time. 1 full week. I didn&#39;t even know that was possible, but I just didn&#39;t have to go.</p>\n</div>","score":1145,"upvotes":1145,"createdAt":"2019-01-01T22:51:18.000Z","createdUtc":1546383078,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1iz35","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iz35/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iz35/","parentId":"t1_ed1in4r","author":"PM_ME_GOOD_FEELS","text":"Ive been there chief. Took a 9 day trip to NYC including travel time. Didnt poop once, ate three meals a day. Just didn't need to go. ","renderedHtml":"<div class=\"md\"><p>Ive been there chief. Took a 9 day trip to NYC including travel time. Didnt poop once, ate three meals a day. Just didn&#39;t need to go. </p>\n</div>","score":787,"upvotes":787,"createdAt":"2019-01-01T22:55:52.000Z","createdUtc":1546383352,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1j73t","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j73t/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j73t/","parentId":"t1_ed1iz35","author":"HellInOurHearts","text":"Did you drop a 50lb log after getting home, or was it spread out over several quick shits in one day?","renderedHtml":"<div class=\"md\"><p>Did you drop a 50lb log after getting home, or was it spread out over several quick shits in one day?</p>\n</div>","score":658,"upvotes":658,"createdAt":"2019-01-01T22:59:00.000Z","createdUtc":1546383540,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1joy6","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1joy6/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1joy6/","parentId":"t1_ed1j73t","author":"PM_ME_GOOD_FEELS","text":"I didnt deuce for a day or two after I got back, then it was two of em like fat man & little boy. Then back to normal","renderedHtml":"<div class=\"md\"><p>I didnt deuce for a day or two after I got back, then it was two of em like fat man &amp; little boy. Then back to normal</p>\n</div>","score":1263,"upvotes":1263,"createdAt":"2019-01-01T23:05:51.000Z","createdUtc":1546383951,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jqqq","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqqq/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqqq/","parentId":"t1_ed1joy6","author":"HellInOurHearts","text":"Respect.","renderedHtml":"<div class=\"md\"><p>Respect.</p>\n</div>","score":519,"upvotes":519,"createdAt":"2019-01-01T23:06:31.000Z","createdUtc":1546383991,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1qc3r,ed223x1","hasMore":true}}},{"id":"ed1kkn5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kkn5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kkn5/","parentId":"t1_ed1joy6","author":"Singing_Sea_Shanties","text":"Glad it worked out that way. Could have led to impacted stool. Not fun. I assume.","renderedHtml":"<div class=\"md\"><p>Glad it worked out that way. Could have led to impacted stool. Not fun. I assume.</p>\n</div>","score":142,"upvotes":142,"createdAt":"2019-01-01T23:17:52.000Z","createdUtc":1546384672,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1mqcb","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mqcb/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mqcb/","parentId":"t1_ed1kkn5","author":"halfdoublepurl","text":"It’s awful. I got impacted the last time I was pregnant. No one told me prenatal pills and pregnancy slowing your digestive system causes constipation and you should take something if you haven’t shit in a few days. I went a week, and had to be disimpacted.","renderedHtml":"<div class=\"md\"><p>It’s awful. I got impacted the last time I was pregnant. No one told me prenatal pills and pregnancy slowing your digestive system causes constipation and you should take something if you haven’t shit in a few days. I went a week, and had to be disimpacted.</p>\n</div>","score":168,"upvotes":168,"createdAt":"2019-01-01T23:47:30.000Z","createdUtc":1546386450,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1n4tq","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1n4tq/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1n4tq/","parentId":"t1_ed1mqcb","author":"anthony785","text":"Disimpacted?????","renderedHtml":"<div class=\"md\"><p>Disimpacted?????</p>\n</div>","score":93,"upvotes":93,"createdAt":"2019-01-01T23:53:00.000Z","createdUtc":1546386780,"depth":7,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1nyb8","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nyb8/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nyb8/","parentId":"t1_ed1n4tq","author":"[deleted]","text":"Someone gets to reach in you and get it out. Yes thats exactly what it sounds like.","renderedHtml":"<div class=\"md\"><p>Someone gets to reach in you and get it out. Yes thats exactly what it sounds like.</p>\n</div>","score":163,"upvotes":163,"createdAt":"2019-01-02T00:03:56.000Z","createdUtc":1546387436,"depth":8,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1u7qa","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1u7qa/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1u7qa/","parentId":"t1_ed1nyb8","author":"conspicuous86","text":"Doctor here. Yes, it’s exactly what it sounds like. It’s usually saved as a very very last resort (after enemas fail). Don’t worry, lots and lots of lube is used.\n\nFun fact: it’s the one of the things they “let” the medical student do. (More like force) Fortunately, I survived my medical training without having to do one. Probably because I have huge hands.","renderedHtml":"<div class=\"md\"><p>Doctor here. Yes, it’s exactly what it sounds like. It’s usually saved as a very very last resort (after enemas fail). Don’t worry, lots and lots of lube is used.</p>\n\n<p>Fun fact: it’s the one of the things they “let” the medical student do. (More like force) Fortunately, I survived my medical training without having to do one. Probably because I have huge hands.</p>\n</div>","score":205,"upvotes":205,"createdAt":"2019-01-02T01:33:07.000Z","createdUtc":1546392787,"depth":9,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1xlmg,ed1zj7r,ed1vc07,ed22iuf,ed1wpbg,ed1ym62,ed1sxmd","hasMore":true}}}],"page":{"nextCursor":"ed1pa0e,ed1wrkk,ed1wybo","hasMore":true}}}],"page":{"nextCursor":"ed1u303,ed1rgx9,ed1wdhr,ed1wx52,ed25pjj,ed1z6wh,ed26vmm","hasMore":true}}}],"page":{"nextCursor":"ed1q9om","hasMore":true}}}],"page":{"nextCursor":"ed1mslf,ed1kz0r,ed1v1jz,ed1mety,ed25qyn,eq94t7w,ed1mxek,ed1n2vq,ed1oywd,ed1wl5m,ed22jqx,ed240ct,ed2hewy,ed2s2u7","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1lcqy,ed1w43k,ed1ni64,ed1n3nk,ed1t473,ed1t7h6,ed1lfeo,ed24pap,ed1ujss,ed1w5ij","hasMore":true}}},{"id":"ed1ixf5","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixf5/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixf5/","parentId":"t1_ed1in4r","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":172,"upvotes":172,"createdAt":"2019-01-01T22:55:14.000Z","createdUtc":1546383314,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1kfxy,ed1kodk,ed20296,ed1xw6o","hasMore":true}}},{"id":"ed1j59g","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j59g/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j59g/","parentId":"t1_ed1in4r","author":"[deleted]","text":"Amateurs! I've done 14 days personal record. Would not recommend.","renderedHtml":"<div class=\"md\"><p>Amateurs! I&#39;ve done 14 days personal record. Would not recommend.</p>\n</div>","score":236,"upvotes":236,"createdAt":"2019-01-01T22:58:18.000Z","createdUtc":1546383498,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jqm9","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqm9/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqm9/","parentId":"t1_ed1j59g","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":225,"upvotes":225,"createdAt":"2019-01-01T23:06:28.000Z","createdUtc":1546383988,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kbnc","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kbnc/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kbnc/","parentId":"t1_ed1jqm9","author":"[deleted]","text":"32 days. Not great","renderedHtml":"<div class=\"md\"><p>32 days. Not great</p>\n</div>","score":143,"upvotes":143,"createdAt":"2019-01-01T23:14:25.000Z","createdUtc":1546384465,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kp6l","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kp6l/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kp6l/","parentId":"t1_ed1kbnc","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":168,"upvotes":168,"createdAt":"2019-01-01T23:19:39.000Z","createdUtc":1546384779,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1vj8w","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1vj8w/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1vj8w/","parentId":"t1_ed1kp6l","author":"iamevilcupcake","text":"Eat. Pray. Shit.","renderedHtml":"<div class=\"md\"><p>Eat. Pray. Shit.</p>\n</div>","score":85,"upvotes":85,"createdAt":"2019-01-02T01:52:25.000Z","createdUtc":1546393945,"depth":6,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1wx7r","hasMore":true}}}],"page":{"nextCursor":"eiorptk","hasMore":true}}}],"page":{"nextCursor":"ed1niwc,ed1p52o,ed1wkzw,ed221yh,ed1njer,ed1xgy6,ed1nhep,ed1q3pl,ed2oeno,ed1yuzl","hasMore":true}}}],"page":{"nextCursor":"ed1k04q,ed1pcvr,ed1ohkh,ed1zxyr,ed1u3ou","hasMore":true}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1ki6h,ed1n8hr,ed1st8n,ed1moda,ed1pgok,ed1vmry,ed1yzr1,ed1ny24,ed1nsxh,ed1w13n,ed1wtyf,ed1zuwt,ed27x4z,ed1l4mu,ed1l3s6,ed1oafp,ed1p5bz,ed1x7l6,ed1xwn7,ed1z6bp,ed249zh,ed28zef,ed2x6b1,ed1khr5,ed1n8v7,ed1oidi,ed1sct5,ed1vnm4,ed1yc4b,ed2666u,ed2j1bj,edqll8n","hasMore":true}}},{"id":"ed1jf7g","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jf7g/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jf7g/","parentId":"t1_ed1dp7k","author":"PM_ME_UR_LUNCH","text":"There was that one chick that posted (I think in the beginning of the year) that hadn't pooped for like 2 weeks or something. Looked like she was pregnant.\n\nLet me see if I can find the post.\n\nEdit: found it...kinda nsfw\n\nhttps://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/","renderedHtml":"<div class=\"md\"><p>There was that one chick that posted (I think in the beginning of the year) that hadn&#39;t pooped for like 2 weeks or something. Looked like she was pregnant.</p>\n\n<p>Let me see if I can find the post.</p>\n\n<p>Edit: found it...kinda nsfw</p>\n\n<p><a href=\"https://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/\">https://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/</a></p>\n</div>","score":143,"upvotes":143,"createdAt":"2019-01-01T23:02:08.000Z","createdUtc":1546383728,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1t0s5,ed1yjy9","hasMore":true}}}],"page":{"nextCursor":"ed1k9mw,ed1jja6,ed1j01m,ed1jqp8,ed1k6pw,ed1nnw3,ed23024,ed1ldep,ed1vzjx,ed2pdp5,ed9kjy8,ed1jzus,ed1kuxo,ed1lsrz,ed1mfu9,ed1mpdh,ed1oej8,ed1r656,ed1ruau,ed1t1w1,ed1tdh1,ed1tsux,ed1uhb1,ed1uqm5,ed1us79,ed1vh50,ed1vokr,ed1vve6,ed1vvyx,ed1w087,ed1w6l8,ed1w8aa,ed1wcws,ed1weqo,ed1wjk3,ed1wote,ed1wtxr,ed1wypy,ed1x2q9,ed1x4xx,ed1x701,ed1ximj,ed1xm8c,ed1ys75,ed1z4ao,ed1zfnw,ed1zfov,ed20vwp,ed20y9x,ed20zu7,ed21gbv,ed21s9w,ed21sbx,ed21vw4,ed220a3,ed23794,ed238ww,ed24pv5,ed24tm9,ed255ln,ed25lun,ed27gal,ed27sga,ed284fx,ed28a6o,ed28l56,ed298zs,ed2b23k,ed2cbbi,ed2dboh","hasMore":true}}},{"id":"ed1dhka","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhka/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhka/","parentId":"t3_ablzuq","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":141,"upvotes":141,"createdAt":"2019-01-01T21:41:51.000Z","createdUtc":1546378911,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1s041,ed2qvds","hasMore":true}}},{"id":"ed1cskg","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cskg/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cskg/","parentId":"t3_ablzuq","author":"FourEyesWhitePerson","text":"My therapist says it’s because I have a hard time letting things go ","renderedHtml":"<div class=\"md\"><p>My therapist says it’s because I have a hard time letting things go </p>\n</div>","score":1672,"upvotes":1672,"createdAt":"2019-01-01T21:32:53.000Z","createdUtc":1546378373,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1d1h7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d1h7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d1h7/","parentId":"t1_ed1cskg","author":"ShoddySubstance","text":"I'll hold your hand to help you out","renderedHtml":"<div class=\"md\"><p>I&#39;ll hold your hand to help you out</p>\n</div>","score":785,"upvotes":785,"createdAt":"2019-01-01T21:36:04.000Z","createdUtc":1546378564,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jsp7","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jsp7/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jsp7/","parentId":"t1_ed1d1h7","author":"pipsdontsqueak","text":"*I can be your hero, baby.*","renderedHtml":"<div class=\"md\"><p><em>I can be your hero, baby.</em></p>\n</div>","score":191,"upvotes":191,"createdAt":"2019-01-01T23:07:17.000Z","createdUtc":1546384037,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1ojg2","hasMore":true}}}],"page":{"nextCursor":"ed1l0ty,ed1nomp,ed24n8o,ed1mvcg,ed1z4du","hasMore":true}}},{"id":"ed1iebm","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iebm/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iebm/","parentId":"t1_ed1cskg","author":"berniemax","text":"Is your username an play on BlueEyesWhiteDragon from Yu-Gi-Óh?","renderedHtml":"<div class=\"md\"><p>Is your username an play on BlueEyesWhiteDragon from Yu-Gi-Óh?</p>\n</div>","score":307,"upvotes":307,"createdAt":"2019-01-01T22:47:57.000Z","createdUtc":1546382877,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jzop","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jzop/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jzop/","parentId":"t1_ed1iebm","author":"FourEyesWhitePerson","text":"Yes and you’re the first person to ever realize that without me telling!","renderedHtml":"<div class=\"md\"><p>Yes and you’re the first person to ever realize that without me telling!</p>\n</div>","score":284,"upvotes":284,"createdAt":"2019-01-01T23:09:52.000Z","createdUtc":1546384192,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1k6dl,ed1om6h,efzchfz,ed1v354","hasMore":true}}}],"page":{"nextCursor":"ed1jlfx,ed1jr4m,ed8qs4p","hasMore":true}}}],"page":{"nextCursor":"ed1ivyj,eiorqzo,ed1k4gm,ed1pay6,ed1qjwc,ed2akts","hasMore":true}}},{"id":"ed1do9u","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do9u/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do9u/","parentId":"t3_ablzuq","author":"NoAffect4","text":"IT WON'T COME OUT. I need help :(","renderedHtml":"<div class=\"md\"><p>IT WON&#39;T COME OUT. I need help :(</p>\n</div>","score":393,"upvotes":393,"createdAt":"2019-01-01T21:44:12.000Z","createdUtc":1546379052,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1dsn9","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dsn9/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dsn9/","parentId":"t1_ed1do9u","author":"ShoddySubstance","text":"**PUSH**, but don't forget to breathe in between pushes . he he ho ho","renderedHtml":"<div class=\"md\"><p><strong>PUSH</strong>, but don&#39;t forget to breathe in between pushes . he he ho ho</p>\n</div>","score":326,"upvotes":326,"createdAt":"2019-01-01T21:45:47.000Z","createdUtc":1546379147,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jt3t","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt3t/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt3t/","parentId":"t1_ed1dsn9","author":"kookiemnstr","text":"But don't push too hard....hernias are a real thing.","renderedHtml":"<div class=\"md\"><p>But don&#39;t push too hard....hernias are a real thing.</p>\n</div>","score":170,"upvotes":170,"createdAt":"2019-01-01T23:07:26.000Z","createdUtc":1546384046,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1k52y","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k52y/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k52y/","parentId":"t1_ed1jt3t","author":"radwimps","text":"hemorrhoids too","renderedHtml":"<div class=\"md\"><p>hemorrhoids too</p>\n</div>","score":136,"upvotes":136,"createdAt":"2019-01-01T23:11:56.000Z","createdUtc":1546384316,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1pszl","hasMore":true}}}],"page":{"nextCursor":"ed1s69k,ed26c57,ed1lt7z","hasMore":true}}}],"page":{"nextCursor":"ed1m1fb,ed1karx,ed2c3ml","hasMore":true}}},{"id":"ed1e2ak","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e2ak/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e2ak/","parentId":"t1_ed1do9u","author":"[deleted]","text":"Drink some water, eat some fiber, take a walk","renderedHtml":"<div class=\"md\"><p>Drink some water, eat some fiber, take a walk</p>\n</div>","score":69,"upvotes":69,"createdAt":"2019-01-01T21:49:19.000Z","createdUtc":1546379359,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1p054,ed1oa2o","hasMore":true}}}],"page":{"nextCursor":"ed1kg1g,ed1ksed,ed2irdj,ed1lisu,ed1mgb4,ed1nzg3,ed1qqdl,ed1twjc,ed1y9gb,ed20aba,ed227r3","hasMore":true}}},{"id":"ed1bxsi","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxsi/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxsi/","parentId":"t3_ablzuq","author":"junk-trunk","text":"...huh.. i just realized i haven't pooped today.\n\nEdit: obligatory thanks for the gold n' sliver. And my most upvoted comment is about poopin'  #hashtag!!1! blessed","renderedHtml":"<div class=\"md\"><p>...huh.. i just realized i haven&#39;t pooped today.</p>\n\n<p>Edit: obligatory thanks for the gold n&#39; sliver. And my most upvoted comment is about poopin&#39;  #hashtag!!1! blessed</p>\n</div>","score":15299,"upvotes":15299,"createdAt":"2019-01-01T21:22:40.000Z","createdUtc":1546377760,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1c4xr","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c4xr/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c4xr/","parentId":"t1_ed1bxsi","author":"ShoddySubstance","text":"make a pot a coffee and give it 10 minutes\n\n**edit** thanks for the gold!","renderedHtml":"<div class=\"md\"><p>make a pot a coffee and give it 10 minutes</p>\n\n<p><strong>edit</strong> thanks for the gold!</p>\n</div>","score":6225,"upvotes":6225,"createdAt":"2019-01-01T21:25:04.000Z","createdUtc":1546377904,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1et09","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1et09/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1et09/","parentId":"t1_ed1c4xr","author":"junk-trunk","text":"I am definitely a coffee pooper. I work nights so i haven't been up too long. Time to get cracking on making some butt brownies.","renderedHtml":"<div class=\"md\"><p>I am definitely a coffee pooper. I work nights so i haven&#39;t been up too long. Time to get cracking on making some butt brownies.</p>\n</div>","score":1443,"upvotes":1443,"createdAt":"2019-01-01T21:58:54.000Z","createdUtc":1546379934,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1l089","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1l089/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1l089/","parentId":"t1_ed1et09","author":"NuclearInitiate","text":"> butt brownies.\n\nThere's something I wish I could erase from my memory. ","renderedHtml":"<div class=\"md\"><blockquote>\n<p>butt brownies.</p>\n</blockquote>\n\n<p>There&#39;s something I wish I could erase from my memory. </p>\n</div>","score":556,"upvotes":556,"createdAt":"2019-01-01T23:23:55.000Z","createdUtc":1546385035,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1p26t,ed21o6q,ed1m4xv,ed1pcp7,ed1mu2l,ed1w3qq","hasMore":true}}},{"id":"ed1ju3o","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ju3o/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ju3o/","parentId":"t1_ed1et09","author":"CRAZYPOULTRY","text":"Just need to throw a giant fuck you to midnights in here.  I hate rarely seeing the sun.  ","renderedHtml":"<div class=\"md\"><p>Just need to throw a giant fuck you to midnights in here.  I hate rarely seeing the sun.  </p>\n</div>","score":178,"upvotes":178,"createdAt":"2019-01-01T23:07:48.000Z","createdUtc":1546384068,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1mn5p,ed1memt,ed1mz8s,ed1m3ds,ed1mpso,ed1mzf1","hasMore":true}}}],"page":{"nextCursor":"ed1l782,ed1knvx,ed1ll2n,ed1kl5m,ed1n3l5,ed1lmjq,ed1m084,ed1m0a8,ed1m523","hasMore":true}}},{"id":"ed1iy6p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iy6p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iy6p/","parentId":"t1_ed1c4xr","author":"[deleted]","text":"How is it like being able to poop every day? \n\ni legit poop once  every 3 days ","renderedHtml":"<div class=\"md\"><p>How is it like being able to poop every day? </p>\n\n<p>i legit poop once  every 3 days </p>\n</div>","score":129,"upvotes":129,"createdAt":"2019-01-01T22:55:32.000Z","createdUtc":1546383332,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1kakx","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kakx/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kakx/","parentId":"t1_ed1iy6p","author":"JustADutchRudder","text":"I shit at 5am every day, well 7am on weekends. Wake up contacts, shit, shower, coffee and swear at the morning.","renderedHtml":"<div class=\"md\"><p>I shit at 5am every day, well 7am on weekends. Wake up contacts, shit, shower, coffee and swear at the morning.</p>\n</div>","score":78,"upvotes":78,"createdAt":"2019-01-01T23:14:00.000Z","createdUtc":1546384440,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1l2ej,ed1w619,ed1kt81,ed1nsel","hasMore":true}}}],"page":{"nextCursor":"ed1me7g,ed1kuh6,ed1p42y,ed1p5jm,ed1jxe5,ed1k5n8,ed2ucuh,ed1ldkj,ed1ldzi,ed1m59b,ed1mqt2,ed1mr3o,ed1ngaf,ed1nuzr,ed1obxr,ed1p8a6,ed1pv0e,ed1qqwt","hasMore":true}}}],"page":{"nextCursor":"ed1d8a0,ed1igmr,ed1iext,ed1j7ab,ed1kub7,ed1pa1u,ed1iegk,ed1ilzl,ed1k1dm,ed1l55q,ed1lbmu,ed1lmng,ed1k65r,ed1l5th,ed1r5xm,ed1ilyd,ed1iouf,ed1ipp2,ed1iq63,ed1ivjr,ed1wzm4,ed1jb21,ed1ka61,ed1knuf,ed1laiy,ed1lj7s,ed1ljkx,ed1lszn,ed1lxeu,ed1m1td,ed1m8c3,ed1mehu,ed1mpnp,ed1mrlx,ed1mrnu,ed1n1mw,ed1nbp9,ed1no6y,ed1ohqo,ed1ow7z,ed1qt3g","hasMore":true}}}],"page":{"nextCursor":"ed1eesk,ed1iz5f,ed1lh4c,ed1jx0v,ed2aald,ed1jzp6,ed1k3w0,ed1l8ke,ed1lfi1,ed1lmkz,ed1ln47,ed1ls1t,ed1md9p,ed1mgj9,ed1mh0o,ed1mjml,ed1mmgy,ed1mpok,ed1mq96,ed1mzqx,ed1ngsg,ed1nmt3,ed1nq6a,ed1nrg2,ed1pe6b,ed1pqsv,ed1q4xk,ed1q5d4,ed1q6uu,ed1so7b,ed22g4z","hasMore":true}}},{"id":"ed1c6s4","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c6s4/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c6s4/","parentId":"t3_ablzuq","author":"CoreyC","text":"I was actually sitting on the toilet at midnight.  New year, same shit.","renderedHtml":"<div class=\"md\"><p>I was actually sitting on the toilet at midnight.  New year, same shit.</p>\n</div>","score":2364,"upvotes":2364,"createdAt":"2019-01-01T21:25:41.000Z","createdUtc":1546377941,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1chiu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1chiu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1chiu/","parentId":"t1_ed1c6s4","author":"ShoddySubstance","text":"different day!","renderedHtml":"<div class=\"md\"><p>different day!</p>\n</div>","score":873,"upvotes":873,"createdAt":"2019-01-01T21:29:15.000Z","createdUtc":1546378155,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1imkr","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imkr/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imkr/","parentId":"t1_ed1chiu","author":"Crypto_dog","text":"Different year! ","renderedHtml":"<div class=\"md\"><p>Different year! </p>\n</div>","score":316,"upvotes":316,"createdAt":"2019-01-01T22:51:06.000Z","createdUtc":1546383066,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jkrn","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jkrn/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jkrn/","parentId":"t1_ed1imkr","author":"smithyrob","text":"Imagine the people who were pooping in 1999 going into 2000. Transmillenial shitting.","renderedHtml":"<div class=\"md\"><p>Imagine the people who were pooping in 1999 going into 2000. Transmillenial shitting.</p>\n</div>","score":316,"upvotes":316,"createdAt":"2019-01-01T23:04:15.000Z","createdUtc":1546383855,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1ru6a,ed1r2zj,ed1x3rh,ed1kpvf,ed1qslv","hasMore":true}}}],"page":{"nextCursor":"ed1jlke,ed1jmev,ed1jha3","hasMore":true}}}],"page":{"nextCursor":"ed1ir3d,ed1ivda","hasMore":true}}},{"id":"ed1e53y","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e53y/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e53y/","parentId":"t1_ed1c6s4","author":"[deleted]","text":"i purposely started peeing in 2018 and finished in 2019","renderedHtml":"<div class=\"md\"><p>i purposely started peeing in 2018 and finished in 2019</p>\n</div>","score":242,"upvotes":242,"createdAt":"2019-01-01T21:50:21.000Z","createdUtc":1546379421,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1jdwd","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdwd/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdwd/","parentId":"t1_ed1e53y","author":"jayemt","text":"January 1st and you’re already achieving your dreams this year. Proud of you ","renderedHtml":"<div class=\"md\"><p>January 1st and you’re already achieving your dreams this year. Proud of you </p>\n</div>","score":171,"upvotes":171,"createdAt":"2019-01-01T23:01:38.000Z","createdUtc":1546383698,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":"ed1jvgl,ed1kvxb,ed1x7hf,ed1maew,ed1q06b,ed2302m","hasMore":true}}},{"id":"ed1e41p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e41p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e41p/","parentId":"t1_ed1c6s4","author":"IIReallyDontCareDoU","text":"I took a shit about 20 minutes before midnight. Then my dog started freaking out because my neighbor decided 11:40 was midnight. (Fireworks)\n\nTried to console him through the door then spent the rest of the night cuddling with him.\n\n\nBest New Years ever.","renderedHtml":"<div class=\"md\"><p>I took a shit about 20 minutes before midnight. Then my dog started freaking out because my neighbor decided 11:40 was midnight. (Fireworks)</p>\n\n<p>Tried to console him through the door then spent the rest of the night cuddling with him.</p>\n\n<p>Best New Years ever.</p>\n</div>","score":225,"upvotes":225,"createdAt":"2019-01-01T21:49:58.000Z","createdUtc":1546379398,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1kxn6,ed1x67j","hasMore":true}}}],"page":{"nextCursor":"ed1j006,ed1kcfg,ed1itnb,ed1jln9,ed1kyrp,ed1os0l,ed1zhe2,ed1iywo,ed1jk93,ed1kaux,ed1kg38,ed1vvw3","hasMore":true}}},{"id":"ed1d0da","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d0da/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d0da/","parentId":"t3_ablzuq","author":"owen00600","text":"I have trust issues ","renderedHtml":"<div class=\"md\"><p>I have trust issues </p>\n</div>","score":442,"upvotes":442,"createdAt":"2019-01-01T21:35:40.000Z","createdUtc":1546378540,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1d8xb","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d8xb/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d8xb/","parentId":"t1_ed1d0da","author":"ShoddySubstance","text":"we can try and help relieve at least one issue","renderedHtml":"<div class=\"md\"><p>we can try and help relieve at least one issue</p>\n</div>","score":202,"upvotes":202,"createdAt":"2019-01-01T21:38:44.000Z","createdUtc":1546378724,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1qvvu","hasMore":true}}}],"page":{"nextCursor":"ed2b5tj,ed1jllb","hasMore":true}}},{"id":"ed1i2l9","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i2l9/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i2l9/","parentId":"t3_ablzuq","author":"bluntsandthunder","text":"I’ve poop twice since 2019 started, take that 2018! Your shit can’t hold me back any longer! ","renderedHtml":"<div class=\"md\"><p>I’ve poop twice since 2019 started, take that 2018! Your shit can’t hold me back any longer! </p>\n</div>","score":371,"upvotes":371,"createdAt":"2019-01-01T22:43:27.000Z","createdUtc":1546382607,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1i4n0","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i4n0/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i4n0/","parentId":"t1_ed1i2l9","author":"ShoddySubstance","text":"take no shit from 2018!","renderedHtml":"<div class=\"md\"><p>take no shit from 2018!</p>\n</div>","score":167,"upvotes":167,"createdAt":"2019-01-01T22:44:14.000Z","createdUtc":1546382654,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1ocy6","hasMore":true}}}],"page":{"nextCursor":"ed1qol0,ed1ldw6","hasMore":true}}},{"id":"ed1j4ue","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j4ue/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j4ue/","parentId":"t3_ablzuq","author":"Maverick039","text":"I literally read this as I sat down for my first 2019 poop. ","renderedHtml":"<div class=\"md\"><p>I literally read this as I sat down for my first 2019 poop. </p>\n</div>","score":93,"upvotes":93,"createdAt":"2019-01-01T22:58:08.000Z","createdUtc":1546383488,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed26s0r,ed1livk,ed1zq16","hasMore":true}}},{"id":"ed1cf2z","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cf2z/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cf2z/","parentId":"t3_ablzuq","author":"greencannondale","text":"I took Imodium for its labeled purpose yesterday evening and it is still working. ","renderedHtml":"<div class=\"md\"><p>I took Imodium for its labeled purpose yesterday evening and it is still working. </p>\n</div>","score":89,"upvotes":89,"createdAt":"2019-01-01T21:28:27.000Z","createdUtc":1546378107,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1nyck,ed2159t,ed1ln4t","hasMore":true}}},{"id":"ed1b2m2","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b2m2/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b2m2/","parentId":"t3_ablzuq","author":"MerleyMonster","text":"Alcohol makes me constipated :P","renderedHtml":"<div class=\"md\"><p>Alcohol makes me constipated :P</p>\n</div>","score":555,"upvotes":555,"createdAt":"2019-01-01T21:11:55.000Z","createdUtc":1546377115,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1e6be","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e6be/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e6be/","parentId":"t1_ed1b2m2","author":"[deleted]","text":"It does the complete opposite to me. The beer shits is literally a pain in the arse ","renderedHtml":"<div class=\"md\"><p>It does the complete opposite to me. The beer shits is literally a pain in the arse </p>\n</div>","score":454,"upvotes":454,"createdAt":"2019-01-01T21:50:47.000Z","createdUtc":1546379447,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1j821,ed1xdyp,ed1j8pv,ed1rj86,ed1izln,ed2m7t0,ed1iz3c,ed1jqzu,ed1kwta,ed1m39j,ed1yogw","hasMore":true}}}],"page":{"nextCursor":"ed1ioyu,ed1by94,ed1j6ms,ed1djna,ed1jasj,ed1j5vr","hasMore":true}}},{"id":"ed1i419","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i419/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i419/","parentId":"t3_ablzuq","author":"flumsi","text":"cocaine","renderedHtml":"<div class=\"md\"><p>cocaine</p>\n</div>","score":67,"upvotes":67,"createdAt":"2019-01-01T22:44:01.000Z","createdUtc":1546382641,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed240nr","hasMore":true}}},{"id":"ed1ed00","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ed00/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ed00/","parentId":"t3_ablzuq","author":"[deleted]","text":"I did an enema yesterday and didn't eat. 2019's first poop will be from food from 2019. Funny you should ask. ","renderedHtml":"<div class=\"md\"><p>I did an enema yesterday and didn&#39;t eat. 2019&#39;s first poop will be from food from 2019. Funny you should ask. </p>\n</div>","score":184,"upvotes":184,"createdAt":"2019-01-01T21:53:13.000Z","createdUtc":1546379593,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1jjt9,ed1jx9s","hasMore":true}}},{"id":"ed1cbou","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbou/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbou/","parentId":"t3_ablzuq","author":"DGiovanni","text":"I don't poop at work","renderedHtml":"<div class=\"md\"><p>I don&#39;t poop at work</p>\n</div>","score":227,"upvotes":227,"createdAt":"2019-01-01T21:27:18.000Z","createdUtc":1546378038,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ck2x","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ck2x/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ck2x/","parentId":"t1_ed1cbou","author":"ShoddySubstance","text":"you should, boss makes a dollar, you make a dime, that's why you poop on company time.","renderedHtml":"<div class=\"md\"><p>you should, boss makes a dollar, you make a dime, that&#39;s why you poop on company time.</p>\n</div>","score":713,"upvotes":713,"createdAt":"2019-01-01T21:30:06.000Z","createdUtc":1546378206,"depth":1,"isSubmitter":true,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"ed1ikbu","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ikbu/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ikbu/","parentId":"t1_ed1ck2x","author":"HillarysDoubleChin","text":"I have IBS so my approach is slightly different.\n\nBoss makes a dollar, I make a dime, that's why I poop 16 times a day.","renderedHtml":"<div class=\"md\"><p>I have IBS so my approach is slightly different.</p>\n\n<p>Boss makes a dollar, I make a dime, that&#39;s why I poop 16 times a day.</p>\n</div>","score":372,"upvotes":372,"createdAt":"2019-01-01T22:50:16.000Z","createdUtc":1546383016,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1izr6,ed2eg0y,ed1jdtw,ed1k9si,ed1zu37","hasMore":true}}}],"page":{"nextCursor":"eda01mk","hasMore":true}}}],"page":{"nextCursor":"ed1qs4s,ed1oc3g","hasMore":true}}},{"id":"ed1i065","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i065/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i065/","parentId":"t3_ablzuq","author":"Quinthyll","text":"Because, much like 2018, I don't give a crap in 2019.","renderedHtml":"<div class=\"md\"><p>Because, much like 2018, I don&#39;t give a crap in 2019.</p>\n</div>","score":85,"upvotes":85,"createdAt":"2019-01-01T22:42:32.000Z","createdUtc":1546382552,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed2g4bw","hasMore":true}}},{"id":"ed1f39m","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f39m/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f39m/","parentId":"t3_ablzuq","author":"Seventy_x_7","text":"Woke up at 3am because I caught the stomach virus my daughter and my son had. \n\nI’ve lost like 4 pounds in the last 12 hours thanks to pooping and vomiting.\n\nWahoo, back under my pre-pregnancy weight. ","renderedHtml":"<div class=\"md\"><p>Woke up at 3am because I caught the stomach virus my daughter and my son had. </p>\n\n<p>I’ve lost like 4 pounds in the last 12 hours thanks to pooping and vomiting.</p>\n\n<p>Wahoo, back under my pre-pregnancy weight. </p>\n</div>","score":123,"upvotes":123,"createdAt":"2019-01-01T22:02:37.000Z","createdUtc":1546380157,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1lg96,ed1t4tq,ed1qhd5,ed1ll1i,ed1u279,ed3bx19,ed2cc6g","hasMore":true}}},{"id":"ed1i9jb","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9jb/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9jb/","parentId":"t3_ablzuq","author":"The_Goondocks","text":"It won't let go of ME!","renderedHtml":"<div class=\"md\"><p>It won&#39;t let go of ME!</p>\n</div>","score":28,"upvotes":28,"createdAt":"2019-01-01T22:46:07.000Z","createdUtc":1546382767,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":"ed1ifnc,ed26t07","hasMore":true}}},{"id":"ed1ixhp","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixhp/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixhp/","parentId":"t3_ablzuq","author":"I_Kaint_Spale","text":"Then 2019 is official, right now, as I typed this...(grunt.. sigh) Happy New Year! ","renderedHtml":"<div class=\"md\"><p>Then 2019 is official, right now, as I typed this...(grunt.. sigh) Happy New Year! </p>\n</div>","score":27,"upvotes":27,"createdAt":"2019-01-01T22:55:16.000Z","createdUtc":1546383316,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"ed1dn3p","url":"https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dn3p/","permalink":"/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dn3p/","parentId":"t3_ablzuq","author":"Ammuniti0n","text":"I'm not ready to release the humongous 2018 crap out yet. Give us time","renderedHtml":"<div class=\"md\"><p>I&#39;m not ready to release the humongous 2018 crap out yet. Give us time</p>\n</div>","score":27,"upvotes":27,"createdAt":"2019-01-01T21:43:47.000Z","createdUtc":1546379027,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"no_comments":{"value":{"data":{"lookupStatus":"found","post":{"id":"1sgke73","title":"CoinGecko 2026 Spot CEX Report","url":"https://www.reddit.com/gallery/1sgke73","permalink":"/r/coingecko/comments/1sgke73/coingecko_2026_spot_cex_report/","subreddit":"coingecko","subredditNamePrefixed":"r/coingecko","author":"coingecko","score":1,"upvoteRatio":1,"commentCount":0,"createdAt":"2026-04-09T09:05:30.000Z","createdUtc":1775725530,"over18":false,"locked":false,"stickied":false},"page":{"nextCursor":null,"hasMore":false},"comments":[]},"meta":{"requestId":"req_01example_nc","creditsCharged":1,"version":"v1"}}},"last_page":{"value":{"data":{"lookupStatus":"found","post":{"id":"1tgimff","title":"Aura Displays debuts new portable monitor with foldable AMOLED display","url":"https://www.notebookcheck.net/Aura-Displays-debuts-new-portable-monitor-with-foldable-AMOLED-display.1299245.0.html","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/","subreddit":"gadgets","subredditNamePrefixed":"r/gadgets","author":"dapperlemon","score":409,"upvoteRatio":0.9,"commentCount":39,"createdAt":"2026-05-18T10:35:29.000Z","createdUtc":1779100529,"over18":false,"locked":false,"stickied":false},"page":{"nextCursor":null,"hasMore":false},"comments":[{"id":"omgjq7a","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgjq7a/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgjq7a/","parentId":"t3_1tgimff","author":"AutoModerator","text":"\nWe have a giveaway running, be sure to enter in the post linked below for your chance to win!\n\n* [Intehill x r/Gadgets Giveaway — Win Stunning DuoTrek 1 & 2.5K 120Hz 16'' Portable Monitor 2!](https://old.reddit.com/r/gadgets/comments/1t962i5/giveaway_intehill_x_rgadgets_giveaway_win)\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/gadgets) if you have any questions or concerns.*","renderedHtml":"<div class=\"md\"><p>We have a giveaway running, be sure to enter in the post linked below for your chance to win!</p>\n\n<ul>\n<li><a href=\"https://old.reddit.com/r/gadgets/comments/1t962i5/giveaway_intehill_x_rgadgets_giveaway_win\">Intehill x r/Gadgets Giveaway — Win Stunning DuoTrek 1 &amp; 2.5K 120Hz 16&#39;&#39; Portable Monitor 2!</a></li>\n</ul>\n\n<p><em>I am a bot, and this action was performed automatically. Please <a href=\"/message/compose/?to=/r/gadgets\">contact the moderators of this subreddit</a> if you have any questions or concerns.</em></p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T10:35:30.000Z","createdUtc":1779100530,"depth":0,"isSubmitter":false,"stickied":true,"locked":true,"distinguished":"moderator","replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omhevde","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhevde/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhevde/","parentId":"t3_1tgimff","author":"narwhal_breeder","text":"Cool - but I don’t really see the point of a folding monitor that would have no problem fitting in a laptop pouch unfolded. \n\nWouldn’t the use case for these being able to fit a larger than normal screen in a laptop bag? So 16in +? \n\nI use portable monitors alllll the time for work - and it always just goes in the same pouch as my laptop. \n\n$1299 for a 13.3 inch screen that would fit in any laptop pouch/bag unfolded with a laptop anyways..\n\nA solution in search of a problem. ","renderedHtml":"<div class=\"md\"><p>Cool - but I don’t really see the point of a folding monitor that would have no problem fitting in a laptop pouch unfolded. </p>\n\n<p>Wouldn’t the use case for these being able to fit a larger than normal screen in a laptop bag? So 16in +? </p>\n\n<p>I use portable monitors alllll the time for work - and it always just goes in the same pouch as my laptop. </p>\n\n<p>$1299 for a 13.3 inch screen that would fit in any laptop pouch/bag unfolded with a laptop anyways..</p>\n\n<p>A solution in search of a problem. </p>\n</div>","score":34,"upvotes":34,"createdAt":"2026-05-18T13:47:14.000Z","createdUtc":1779112034,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omi3syt","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3syt/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3syt/","parentId":"t1_omhevde","author":"RenderedMeat","text":"Sheesh! $1300! You can buy a a 13” iPad for that much, use it as a second monitor, AND as an iPad. \n\nI use a 16” portable monitor with 1440p resolution and it cost like $80. And yeah, it slides right next to my laptop. ","renderedHtml":"<div class=\"md\"><p>Sheesh! $1300! You can buy a a 13” iPad for that much, use it as a second monitor, AND as an iPad. </p>\n\n<p>I use a 16” portable monitor with 1440p resolution and it cost like $80. And yeah, it slides right next to my laptop. </p>\n</div>","score":21,"upvotes":21,"createdAt":"2026-05-18T15:44:21.000Z","createdUtc":1779119061,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omi438d","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi438d/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi438d/","parentId":"t1_omi3syt","author":"narwhal_breeder","text":"You can get two 13 in iPads for that. ","renderedHtml":"<div class=\"md\"><p>You can get two 13 in iPads for that. </p>\n</div>","score":4,"upvotes":4,"createdAt":"2026-05-18T15:45:39.000Z","createdUtc":1779119139,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omj6o2y","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omj6o2y/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omj6o2y/","parentId":"t1_omi438d","author":"zen1706","text":"No you can’t unless you buy used.","renderedHtml":"<div class=\"md\"><p>No you can’t unless you buy used.</p>\n</div>","score":5,"upvotes":5,"createdAt":"2026-05-18T18:56:04.000Z","createdUtc":1779130564,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omjjw9g","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjjw9g/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjjw9g/","parentId":"t1_omi3syt","author":"Vandorol","text":"How do u use it as a second monitor with windows laptop?","renderedHtml":"<div class=\"md\"><p>How do u use it as a second monitor with windows laptop?</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T20:02:01.000Z","createdUtc":1779134521,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omjmbjf","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjmbjf/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjmbjf/","parentId":"t1_omjjw9g","author":"RenderedMeat","text":"Requires an app, but there’s a few. Spacedesk, Duet Display, LetsView, others…","renderedHtml":"<div class=\"md\"><p>Requires an app, but there’s a few. Spacedesk, Duet Display, LetsView, others…</p>\n</div>","score":5,"upvotes":5,"createdAt":"2026-05-18T20:13:14.000Z","createdUtc":1779135194,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omjvxx8","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjvxx8/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjvxx8/","parentId":"t1_omjmbjf","author":"Pleasant_Dot_189","text":"Those are all terrible imo. The latency lag makes the set up silly ","renderedHtml":"<div class=\"md\"><p>Those are all terrible imo. The latency lag makes the set up silly </p>\n</div>","score":3,"upvotes":3,"createdAt":"2026-05-18T20:57:25.000Z","createdUtc":1779137845,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omk84wh","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk84wh/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk84wh/","parentId":"t1_omjvxx8","author":"leastlol","text":"Astropad sells a dongle/software for this as well:\n\nhttps://astropad.com/\n\nThe latency for any of these is obviously worse than a portable monitor with a direct connection, but they're also often more than adequate as a secondary display where the latency just doesn't matter as much.\n\nIf you're carrying an iPad already, I think it's more sensible than carrying a laptop, iPad, and portable monitor.","renderedHtml":"<div class=\"md\"><p>Astropad sells a dongle/software for this as well:</p>\n\n<p><a href=\"https://astropad.com/\">https://astropad.com/</a></p>\n\n<p>The latency for any of these is obviously worse than a portable monitor with a direct connection, but they&#39;re also often more than adequate as a secondary display where the latency just doesn&#39;t matter as much.</p>\n\n<p>If you&#39;re carrying an iPad already, I think it&#39;s more sensible than carrying a laptop, iPad, and portable monitor.</p>\n</div>","score":5,"upvotes":5,"createdAt":"2026-05-18T21:58:08.000Z","createdUtc":1779141488,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omk9vwb","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9vwb/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9vwb/","parentId":"t1_omjvxx8","author":"RenderedMeat","text":"I haven’t used them. Using an iPad as a second screen with a Mac is seamless and fast. ","renderedHtml":"<div class=\"md\"><p>I haven’t used them. Using an iPad as a second screen with a Mac is seamless and fast. </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T22:07:40.000Z","createdUtc":1779142060,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omhnl6z","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhnl6z/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhnl6z/","parentId":"t1_omhevde","author":"5eppa","text":"Came to basically say this. I get foldable phones because in a smaller amount of carrying space you're getting more total screen size. But this doesn't have a stand, costs a ton of money for what you get, and doesn't seem to do anything aside from fold. I just don't know what the use case for this is. Maybe if it had a couple of kick stands and was like a 26 inch screen that folded into the size of a 13 inch one then I could justify taking it with me on a trip because it would be highly portable and give me great real estate for working while traveling. ","renderedHtml":"<div class=\"md\"><p>Came to basically say this. I get foldable phones because in a smaller amount of carrying space you&#39;re getting more total screen size. But this doesn&#39;t have a stand, costs a ton of money for what you get, and doesn&#39;t seem to do anything aside from fold. I just don&#39;t know what the use case for this is. Maybe if it had a couple of kick stands and was like a 26 inch screen that folded into the size of a 13 inch one then I could justify taking it with me on a trip because it would be highly portable and give me great real estate for working while traveling. </p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T14:30:05.000Z","createdUtc":1779114605,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omk9agk","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9agk/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9agk/","parentId":"t1_omhnl6z","author":"leastlol","text":"Asus showed off a folding laptop that kind of does this: \n\nhttps://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/\n\nIt's not just a display, though. \n\nI think maybe one possible use case for the smaller folding 13 inch display is someone using their phone as a desktop computer (with Dex or whatever Google's new implementation for it is called) - you could maybe fit this display  into a small sling instead of a backpack/messenger bag. Still does feel like it's a solution in search of a problem.","renderedHtml":"<div class=\"md\"><p>Asus showed off a folding laptop that kind of does this: </p>\n\n<p><a href=\"https://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/\">https://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/</a></p>\n\n<p>It&#39;s not just a display, though. </p>\n\n<p>I think maybe one possible use case for the smaller folding 13 inch display is someone using their phone as a desktop computer (with Dex or whatever Google&#39;s new implementation for it is called) - you could maybe fit this display  into a small sling instead of a backpack/messenger bag. Still does feel like it&#39;s a solution in search of a problem.</p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T22:04:23.000Z","createdUtc":1779141863,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omk9v1h","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9v1h/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9v1h/","parentId":"t1_omk9agk","author":"5eppa","text":"Fair, yeah their foldable laptop feels sort of more like a tablet where again I get the point. Like you said there probably is some clever use cases for this. I just struggle to see where I justify the proce tag for it. ","renderedHtml":"<div class=\"md\"><p>Fair, yeah their foldable laptop feels sort of more like a tablet where again I get the point. Like you said there probably is some clever use cases for this. I just struggle to see where I justify the proce tag for it. </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T22:07:33.000Z","createdUtc":1779142053,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omhruif","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhruif/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhruif/","parentId":"t1_omhevde","author":"bluepie","text":"yeah they should use this tech to make like 20\" screens fold down to small laptop size","renderedHtml":"<div class=\"md\"><p>yeah they should use this tech to make like 20&quot; screens fold down to small laptop size</p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T14:49:59.000Z","createdUtc":1779115799,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omht4r0","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omht4r0/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omht4r0/","parentId":"t1_omhevde","author":"rosen380","text":"While I agree that it'd be silly if you are carrying around a laptop bag that it could fit into unfolded and that the price is silly for almost any use case -- maybe something like Samsung DeX, driven by the phone you are already carrying, along with 1-2 of these (assuming that they can get the price down pretty far from $1300) would make for a compact solution for travel?","renderedHtml":"<div class=\"md\"><p>While I agree that it&#39;d be silly if you are carrying around a laptop bag that it could fit into unfolded and that the price is silly for almost any use case -- maybe something like Samsung DeX, driven by the phone you are already carrying, along with 1-2 of these (assuming that they can get the price down pretty far from $1300) would make for a compact solution for travel?</p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T14:55:50.000Z","createdUtc":1779116150,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omhyxeu","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhyxeu/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhyxeu/","parentId":"t1_omht4r0","author":"narwhal_breeder","text":"You’d be surprised at how much space carrying around a keyboard + mouse + dock + power supply for the monitors doesn’t save Compared to a much more powerful MacBook Air you can use without an outlet. \n\nPretty much nobody uses dex for their jobs. ","renderedHtml":"<div class=\"md\"><p>You’d be surprised at how much space carrying around a keyboard + mouse + dock + power supply for the monitors doesn’t save Compared to a much more powerful MacBook Air you can use without an outlet. </p>\n\n<p>Pretty much nobody uses dex for their jobs. </p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T15:22:16.000Z","createdUtc":1779117736,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omi3361","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3361/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3361/","parentId":"t1_omhyxeu","author":"rosen380","text":"\"Pretty much nobody uses dex\"\n\nSure-- but since this isn't priced to be a useful product in 2026, I'm thinking more of it as a proof of concept where changes in tech get us to a point where for normal work use cases, a computer that requires the space that a laptop presently takes up would be way overkill.\n\n  \nSo maybe when your run-of-the-mill flagship phone is about as powerful as a typical modern laptop...\n\nAnd maybe since you'll have the external screens, you are using your phone screen as a touchpad...\n\nAnd maybe you are charging your battery powered phone and screens with a single charging block and a couple of cables (with the connections between devices being wireless)...\n\nAnd most work laptops don't have keyboards that are that great, perhaps a a folding keyboard (so not wider than the screens when they are folded) would be sufficient and we'd still be looking at a complete package that is still far more compact that a 13-15\" laptop bag.\n\n","renderedHtml":"<div class=\"md\"><p>&quot;Pretty much nobody uses dex&quot;</p>\n\n<p>Sure-- but since this isn&#39;t priced to be a useful product in 2026, I&#39;m thinking more of it as a proof of concept where changes in tech get us to a point where for normal work use cases, a computer that requires the space that a laptop presently takes up would be way overkill.</p>\n\n<p>So maybe when your run-of-the-mill flagship phone is about as powerful as a typical modern laptop...</p>\n\n<p>And maybe since you&#39;ll have the external screens, you are using your phone screen as a touchpad...</p>\n\n<p>And maybe you are charging your battery powered phone and screens with a single charging block and a couple of cables (with the connections between devices being wireless)...</p>\n\n<p>And most work laptops don&#39;t have keyboards that are that great, perhaps a a folding keyboard (so not wider than the screens when they are folded) would be sufficient and we&#39;d still be looking at a complete package that is still far more compact that a 13-15&quot; laptop bag.</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T15:41:10.000Z","createdUtc":1779118870,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omi3kk4","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3kk4/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3kk4/","parentId":"t1_omi3361","author":"narwhal_breeder","text":"Great - so all we need to do is invent 5 or so other devices to make this one useful ","renderedHtml":"<div class=\"md\"><p>Great - so all we need to do is invent 5 or so other devices to make this one useful </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T15:43:19.000Z","createdUtc":1779118999,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omia4xa","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omia4xa/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omia4xa/","parentId":"t1_omi3kk4","author":"rosen380","text":"Which is often the case for products that would be deemed proofs of concepts, which was my caveat right in my follow-up comment.\n\nWe had electric motors and batteries and such for a long time which demonstrated that it was theoretically possible to have long range vehicles running with those, yet it took advancements in various technologies to get to the first actual production cars capable of driving a couple of hundred miles on a single charge.\n\nAnd even still -- for a lot of people that still isn't enough if other bits of technology don't make it reasonable for them to switch to a full EV yet, if they have no access to recharging at home or work... \n\n  \n\"so all we need to do is invent 5 or so other devices\" -- and what five devices?\n\nUsing the phone as a touchpad is already a feature of DeX.  A single charging block with multiple ports on it already exist.  \n\nFolding keyboards already exist, I have one that is terrible.  But was made like 10-15 years ago, so I guess I have to imagine they've made some improvements by now...?\n\nAnd the computing power?  For anything that really needs a lot of computing power, I'm just going to remote in to a more powerful server.  For editing some spreadsheets or writing some PHP code or whatever, I suspect that a modern flagship phone is more than capable.\n\n","renderedHtml":"<div class=\"md\"><p>Which is often the case for products that would be deemed proofs of concepts, which was my caveat right in my follow-up comment.</p>\n\n<p>We had electric motors and batteries and such for a long time which demonstrated that it was theoretically possible to have long range vehicles running with those, yet it took advancements in various technologies to get to the first actual production cars capable of driving a couple of hundred miles on a single charge.</p>\n\n<p>And even still -- for a lot of people that still isn&#39;t enough if other bits of technology don&#39;t make it reasonable for them to switch to a full EV yet, if they have no access to recharging at home or work... </p>\n\n<p>&quot;so all we need to do is invent 5 or so other devices&quot; -- and what five devices?</p>\n\n<p>Using the phone as a touchpad is already a feature of DeX.  A single charging block with multiple ports on it already exist.  </p>\n\n<p>Folding keyboards already exist, I have one that is terrible.  But was made like 10-15 years ago, so I guess I have to imagine they&#39;ve made some improvements by now...?</p>\n\n<p>And the computing power?  For anything that really needs a lot of computing power, I&#39;m just going to remote in to a more powerful server.  For editing some spreadsheets or writing some PHP code or whatever, I suspect that a modern flagship phone is more than capable.</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T16:13:19.000Z","createdUtc":1779120799,"depth":5,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omjekei","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjekei/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjekei/","parentId":"t1_omhevde","author":"grahamulax","text":"Bingo. Give me a foldable monitor that basically can fit in my pocket or one hand. I wanna unfold it twice. \n\nHere’s my useless product idea. \n\nCube oled. 6 screens as a cube that unfolds into one screen. You can store the charger inside when folded as a cube. Or it’s a battery. \n\nTada! 🎉 ","renderedHtml":"<div class=\"md\"><p>Bingo. Give me a foldable monitor that basically can fit in my pocket or one hand. I wanna unfold it twice. </p>\n\n<p>Here’s my useless product idea. </p>\n\n<p>Cube oled. 6 screens as a cube that unfolds into one screen. You can store the charger inside when folded as a cube. Or it’s a battery. </p>\n\n<p>Tada! 🎉 </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T19:36:51.000Z","createdUtc":1779133011,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omjf2qh","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjf2qh/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjf2qh/","parentId":"t1_omjekei","author":"narwhal_breeder","text":"I dont think id want to use a monitor shaped like this:  \n[https://www.math.union.edu/\\~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif](https://www.math.union.edu/~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif)","renderedHtml":"<div class=\"md\"><p>I dont think id want to use a monitor shaped like this:<br/>\n<a href=\"https://www.math.union.edu/%7Edpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif\">https://www.math.union.edu/~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif</a></p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T19:39:17.000Z","createdUtc":1779133157,"depth":2,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omjfly1","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjfly1/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjfly1/","parentId":"t1_omjf2qh","author":"grahamulax","text":"LOL OH WAIT. hahaha. Fuck. I was thinking 9 sides then and 3 for each? My brains not in a topology mode clearly but you got me laughing HARD at my own stupidity lolllll ","renderedHtml":"<div class=\"md\"><p>LOL OH WAIT. hahaha. Fuck. I was thinking 9 sides then and 3 for each? My brains not in a topology mode clearly but you got me laughing HARD at my own stupidity lolllll </p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-18T19:41:50.000Z","createdUtc":1779133310,"depth":3,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"oml3rqz","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/oml3rqz/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/oml3rqz/","parentId":"t1_omjfly1","author":"Buscemi_D_Sanji","text":"You've got me laughing too, I was reading this like what the fuck is he talking about hahaha","renderedHtml":"<div class=\"md\"><p>You&#39;ve got me laughing too, I was reading this like what the fuck is he talking about hahaha</p>\n</div>","score":2,"upvotes":2,"createdAt":"2026-05-19T00:59:31.000Z","createdUtc":1779152371,"depth":4,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omlwy0h","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlwy0h/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlwy0h/","parentId":"t1_omhevde","author":"GreenFox1505","text":"Laptops do a better job of protecting their screens than portable monitors do. Portable monitors basically have a sheet of card board covered in fake leather thay function as scratch protection. They do almost nothing for impact protection. A folding monitor would likely have better side-on impact protection.\n\n\nBut really the solution here is portable monitors deserve better hard covers than the shit they give you. \n\n","renderedHtml":"<div class=\"md\"><p>Laptops do a better job of protecting their screens than portable monitors do. Portable monitors basically have a sheet of card board covered in fake leather thay function as scratch protection. They do almost nothing for impact protection. A folding monitor would likely have better side-on impact protection.</p>\n\n<p>But really the solution here is portable monitors deserve better hard covers than the shit they give you. </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-19T03:49:29.000Z","createdUtc":1779162569,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omhg6uc","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhg6uc/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhg6uc/","parentId":"t3_1tgimff","author":"vaanen","text":"completely missed the mark by making AGAIN a screen that can already fit in a small laptop bag. nobody will ever pay for a 13 inch foldable screen when normal 13inch screen are like 300 bucks","renderedHtml":"<div class=\"md\"><p>completely missed the mark by making AGAIN a screen that can already fit in a small laptop bag. nobody will ever pay for a 13 inch foldable screen when normal 13inch screen are like 300 bucks</p>\n</div>","score":8,"upvotes":8,"createdAt":"2026-05-18T13:53:57.000Z","createdUtc":1779112437,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omjpjce","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjpjce/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjpjce/","parentId":"t1_omhg6uc","author":"roguebananah","text":"Or get one that isn’t foldable, it’s a 13 inch screen and it’s $50. It’s powered by thunderbolt (at least the ones are that I travel with)\n\n3 screens including my laptop monitor is incredible for business travel in a hotel room ","renderedHtml":"<div class=\"md\"><p>Or get one that isn’t foldable, it’s a 13 inch screen and it’s $50. It’s powered by thunderbolt (at least the ones are that I travel with)</p>\n\n<p>3 screens including my laptop monitor is incredible for business travel in a hotel room </p>\n</div>","score":3,"upvotes":3,"createdAt":"2026-05-18T20:27:50.000Z","createdUtc":1779136070,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omgsyv7","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgsyv7/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgsyv7/","parentId":"t3_1tgimff","author":"[deleted]","text":"[deleted]","renderedHtml":"<div class=\"md\"><p>[deleted]</p>\n</div>","score":6,"upvotes":6,"createdAt":"2026-05-18T11:41:57.000Z","createdUtc":1779104517,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[{"id":"omgxyzg","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgxyzg/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgxyzg/","parentId":"t1_omgsyv7","author":"Small_Editor_3693","text":"Not for $1500 though","renderedHtml":"<div class=\"md\"><p>Not for $1500 though</p>\n</div>","score":4,"upvotes":4,"createdAt":"2026-05-18T12:13:42.000Z","createdUtc":1779106422,"depth":1,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omh3ytj","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh3ytj/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh3ytj/","parentId":"t3_1tgimff","author":"level-zer0","text":"Very cool - would love to check it out.   Seems kinda pricey compared to to something like the SideTrak - but I’m sure the cost will come down over time.   ","renderedHtml":"<div class=\"md\"><p>Very cool - would love to check it out.   Seems kinda pricey compared to to something like the SideTrak - but I’m sure the cost will come down over time.   </p>\n</div>","score":7,"upvotes":7,"createdAt":"2026-05-18T12:49:09.000Z","createdUtc":1779108549,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omjckou","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjckou/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjckou/","parentId":"t3_1tgimff","author":"GregLittlefield","text":"There is no use case for a laptop since a 13\" portable monitor will fill in the laptop case without needing to be folded...\n\nThere would be a use case as a monitor for a tablet, but then how would you connect it to the tablet?  (USB to HDMI adapter? would that work?)","renderedHtml":"<div class=\"md\"><p>There is no use case for a laptop since a 13&quot; portable monitor will fill in the laptop case without needing to be folded...</p>\n\n<p>There would be a use case as a monitor for a tablet, but then how would you connect it to the tablet?  (USB to HDMI adapter? would that work?)</p>\n</div>","score":3,"upvotes":3,"createdAt":"2026-05-18T19:26:30.000Z","createdUtc":1779132390,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omh9tr3","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh9tr3/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh9tr3/","parentId":"t3_1tgimff","author":"furculture","text":"Always thought about something like this getting made when I first saw foldable screen tech getting put in more consumer electronics. So much closer to getting a foldable monitor with more gaming-capable specs to it at some point in the future. ","renderedHtml":"<div class=\"md\"><p>Always thought about something like this getting made when I first saw foldable screen tech getting put in more consumer electronics. So much closer to getting a foldable monitor with more gaming-capable specs to it at some point in the future. </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T13:20:56.000Z","createdUtc":1779110456,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omhlop2","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhlop2/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhlop2/","parentId":"t3_1tgimff","author":"ImALeaf_OnTheWind","text":"This is great for a smaller portable display when you're sourcing from a phone like a Samsung or Motorola that can be the brains when you don't want to carry a full laptop around. \n\nProblem is why would I want this when Xreal/Rokid/Viture/Rayneo microOLED wearable display glasses costs less than that and is even more portable and comfortable to use? ","renderedHtml":"<div class=\"md\"><p>This is great for a smaller portable display when you&#39;re sourcing from a phone like a Samsung or Motorola that can be the brains when you don&#39;t want to carry a full laptop around. </p>\n\n<p>Problem is why would I want this when Xreal/Rokid/Viture/Rayneo microOLED wearable display glasses costs less than that and is even more portable and comfortable to use? </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T14:21:00.000Z","createdUtc":1779114060,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omjtm8q","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjtm8q/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjtm8q/","parentId":"t3_1tgimff","author":"descendantofJanus","text":"Isn't this what they had in Westworld? ","renderedHtml":"<div class=\"md\"><p>Isn&#39;t this what they had in Westworld? </p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T20:46:32.000Z","createdUtc":1779137192,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omjz8oh","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjz8oh/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjz8oh/","parentId":"t3_1tgimff","author":"Tegumentario","text":"At the low low cost of a whole brand new computer","renderedHtml":"<div class=\"md\"><p>At the low low cost of a whole brand new computer</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T21:12:55.000Z","createdUtc":1779138775,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omk0pgd","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk0pgd/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk0pgd/","parentId":"t3_1tgimff","author":"semibiquitous","text":"This company will be bankrupt in 3...2...1...","renderedHtml":"<div class=\"md\"><p>This company will be bankrupt in 3...2...1...</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T21:19:58.000Z","createdUtc":1779139198,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omk2agr","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk2agr/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk2agr/","parentId":"t3_1tgimff","author":"Starstriker","text":"People don't care about foldables. Just make gadgets with good enough specs and a lower price.","renderedHtml":"<div class=\"md\"><p>People don&#39;t care about foldables. Just make gadgets with good enough specs and a lower price.</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-18T21:27:44.000Z","createdUtc":1779139664,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omlt9hm","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlt9hm/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlt9hm/","parentId":"t3_1tgimff","author":"Raven_gif","text":"$1300 for 300nits. You could buy multiple pro grade monitors for that price. They gotta get that cost down another $1000 at the minimum.","renderedHtml":"<div class=\"md\"><p>$1300 for 300nits. You could buy multiple pro grade monitors for that price. They gotta get that cost down another $1000 at the minimum.</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-19T03:26:53.000Z","createdUtc":1779161213,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}},{"id":"omlygmv","url":"https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlygmv/","permalink":"/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlygmv/","parentId":"t3_1tgimff","author":"JimmyKillsAlot","text":"I understand early adopter tax but there is no way they are selling these in a range people will actually buy them enough to scale.","renderedHtml":"<div class=\"md\"><p>I understand early adopter tax but there is no way they are selling these in a range people will actually buy them enough to scale.</p>\n</div>","score":1,"upvotes":1,"createdAt":"2026-05-19T03:59:14.000Z","createdUtc":1779163154,"depth":0,"isSubmitter":false,"stickied":false,"locked":false,"distinguished":null,"replies":{"items":[],"page":{"nextCursor":null,"hasMore":false}}}]},"meta":{"requestId":"req_01example_lp","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/reddit/posts/transcript":{"get":{"tags":["Reddit"],"summary":"Get Reddit post transcript","description":"Get captions transcript for a Reddit video post.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":1,"surcharges":[],"maxCredits":1,"normalizationFailureCredits":1},"x-socialfetch-credits-pricing":"1 credit per successful request.","x-socialfetch-agent-hints":{"disambiguation":"Accepts Reddit post permalinks and direct hosted video URLs.","emptyResults":"When the post resolves but captions are unavailable, `data.transcript` is null while `data.lookupStatus` is `found`."},"parameters":[{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Link to the Reddit post or direct hosted video URL whose transcript should be returned."},"required":true,"description":"Link to the Reddit post or direct hosted video URL whose transcript should be returned.","name":"url","in":"query"},{"schema":{"type":"string","minLength":2,"maxLength":2,"description":"Optional ISO 639-1 language code (two letters) to prefer when multiple caption tracks exist."},"required":false,"description":"Optional ISO 639-1 language code (two letters) to prefer when multiple caption tracks exist.","name":"language","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":{"id":{"type":"string","minLength":1,"description":"Stable post identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public post URL."},"videoId":{"type":"string","nullable":true,"description":"Hosted video identifier when available."}},"required":["id","url","videoId"],"description":"Post identity when the lookup resolved; otherwise null."},"transcript":{"type":"object","nullable":true,"properties":{"plainText":{"type":"string","description":"Full transcript text parsed from captions."},"language":{"type":"string","description":"ISO 639-1 language code for the caption track when reported by the lookup."},"segments":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Transcript segment text."},"startMs":{"type":"integer","minimum":0,"description":"Segment start offset in milliseconds."},"endMs":{"type":"integer","minimum":0,"description":"Segment end offset in milliseconds."}},"required":["text","startMs","endMs"],"description":"One timed transcript segment."},"description":"Timed transcript segments parsed from captions."}},"required":["plainText","language","segments"],"description":"Transcript content when captions are available. Null when the post resolved but captions are not exposed."}},"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":{"id":"1oiu9xm","url":"https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/football_nostalgiasaints_punter_head_coach_cant/","videoId":"eflpgc6r0zxf1"},"transcript":{"plainText":"stop on third down and now Barnhart I hanging stop on third down and now Barnhart I hanging","language":"en","segments":[{"text":"stop on third down and now Barnhart I hanging","startMs":0,"endMs":300},{"text":"stop on third down and now Barnhart I hanging","startMs":300,"endMs":560}]}},"meta":{"requestId":"req_01example","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":{"id":"missing","url":"https://www.reddit.com/r/example/comments/missing/post/","videoId":"abc123"},"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 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/rumble/search":{"get":{"tags":["Rumble"],"summary":"Search Rumble","description":"Search for videos and Shorts on Rumble.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.page.hasMore` and `data.page.nextCursor` for pagination rather than inferring completion from `data.totalResults` 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":512,"description":"Search query text for Rumble content."},"required":true,"description":"Search query text for Rumble content.","name":"query","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Page number from a previous response."},"required":false,"description":"Page number from a previous response.","name":"cursor","in":"query"}],"responses":{"200":{"description":"Search results for the requested query.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"query":{"type":"string","description":"Search query string evaluated for this response."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream row in Rumble list results."},"description":"Matching Rumble videos."},"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream row in Rumble list results."},"description":"Matching Rumble Shorts."},"channels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble channel identifier."},"name":{"type":"string","nullable":true,"description":"Channel display name."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"description":{"type":"string","nullable":true,"description":"Channel description snippet when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel avatar or banner thumbnail when available."},"subscriberCount":{"type":"integer","nullable":true,"minimum":0,"description":"Subscriber count when available."},"subscriberCountText":{"type":"string","nullable":true,"description":"Human-readable subscriber count when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","name","handle","description","thumbnailUrl","subscriberCount","subscriberCountText","badges"],"description":"A Rumble channel in search results."},"description":"Matching Rumble channels."},"playlists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble playlist identifier."},"title":{"type":"string","nullable":true,"description":"Playlist title."},"url":{"type":"string","nullable":true,"description":"Canonical playlist URL when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Playlist thumbnail URL when available."},"videoCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of videos in the playlist when available."},"videoId":{"type":"string","nullable":true,"description":"Representative video id shown for the playlist when available."},"videoUrl":{"type":"string","nullable":true,"description":"Representative video URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Playlist owner channel id when available."},"name":{"type":"string","nullable":true,"description":"Playlist owner channel name."},"handle":{"type":"string","nullable":true,"description":"Playlist owner handle when available."},"url":{"type":"string","nullable":true,"description":"Playlist owner channel URL when available."}},"required":["id","name","handle","url"],"description":"Playlist owner channel when available."}},"required":["id","title","url","thumbnailUrl","videoCount","videoId","videoUrl","channel"],"description":"A Rumble playlist in search results."},"description":"Matching Rumble playlists."},"liveStreams":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream row in Rumble list results."},"description":"Matching Rumble live streams."},"totalResults":{"type":"integer","minimum":0,"description":"Count of top-level result rows returned in this response across all buckets."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Next page number when more results are available."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["query","videos","shorts","channels","playlists","liveStreams","totalResults","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":"breaking news","videos":[{"id":"v6w80h0","kind":"video","url":"https://rumble.com/v6w80h0-democrats-pretend-to-care-about-epstein-nightly-scroll-w-hayley-caronia-ep..html","title":"Democrats Pretend To Care About Epstein - Nightly Scroll w/ Hayley Caronia (Ep.90) - 07/15/2025","thumbnailUrl":"https://hugh.cdn.rumble.cloud/video/fww1/e9/s8/1/K/X/A/2/KXA2y.oq1b.2-small-Democrats-Pretend-To-Care-A.jpg","channel":{"name":"BonginoReport Verified","handle":"BonginoReport","url":"https://rumble.com/user/BonginoReport"},"viewCount":185000,"viewCountText":"185,000 views","publishedAt":"2025-07-15T16:29:49-04:00","publishedTimeText":"10 months ago","durationSeconds":null,"durationText":null,"badges":[]}],"shorts":[],"channels":[],"playlists":[],"liveStreams":[],"totalResults":1,"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"socialfetch_fixture_no_results_000000","videos":[],"shorts":[],"channels":[],"playlists":[],"liveStreams":[],"totalResults":0,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"query":"breaking news","videos":[{"id":"v6w80h0","kind":"video","url":"https://rumble.com/v6w80h0-democrats-pretend-to-care-about-epstein-nightly-scroll-w-hayley-caronia-ep..html","title":"Democrats Pretend To Care About Epstein - Nightly Scroll w/ Hayley Caronia (Ep.90) - 07/15/2025","thumbnailUrl":"https://hugh.cdn.rumble.cloud/video/fww1/e9/s8/1/K/X/A/2/KXA2y.oq1b.2-small-Democrats-Pretend-To-Care-A.jpg","channel":{"name":"BonginoReport Verified","handle":"BonginoReport","url":"https://rumble.com/user/BonginoReport"},"viewCount":185000,"viewCountText":"185,000 views","publishedAt":"2025-07-15T16:29:49-04:00","publishedTimeText":"10 months ago","durationSeconds":1255,"durationText":"20:55","badges":[]}],"shorts":[],"channels":[],"playlists":[],"liveStreams":[],"totalResults":1,"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example_page2","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/rumble/channels/videos":{"get":{"tags":["Rumble"],"summary":"List Rumble channel videos","description":"List videos and Shorts from a Rumble channel.","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 Rumble channel."},"required":true,"description":"Link to the Rumble channel.","name":"url","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Page number from a previous response."},"required":false,"description":"Page number from a previous response.","name":"cursor","in":"query"}],"responses":{"200":{"description":"Videos and Shorts for the requested channel. 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 channel was resolved for this request."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Resolved channel metadata when available."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream row in Rumble list results."},"description":"Videos returned for the resolved channel. This array may be empty when the channel resolves but there are no videos in the returned page."},"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Rumble content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream row in Rumble list results."},"description":"Shorts returned for the resolved channel. This array may be empty when the channel resolves but there are no Shorts in the returned page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Next page number when more results are available."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["lookupStatus","channel","videos","shorts","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","channel":{"name":"Steven Crowder","handle":"StevenCrowder","url":"https://rumble.com/c/StevenCrowder"},"videos":[{"id":"v2oadka","kind":"video","url":"https://rumble.com/v2oadka--live-daily-show-louder-with-crowder.html","title":"F*CK YOUTUBE: CROWDER HIT 5x! IT'S TIME TO UNITE! | Louder with Crowder","thumbnailUrl":"https://hugh.cdn.rumble.cloud/s/s8/1/A/T/E/H/ATEHj.0kob-small--LIVE-COVERAGE-TRUMP-CNN-TO.jpg","channel":null,"viewCount":1220000,"viewCountText":"1.22M views","publishedAt":"2023-05-17T14:10:00-04:00","publishedTimeText":"2 years ago","durationSeconds":7032,"durationText":"1:57:12","badges":[]}],"shorts":[],"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"no_videos":{"value":{"data":{"lookupStatus":"found","channel":{"name":"Steven Crowder","handle":"StevenCrowder","url":"https://rumble.com/c/StevenCrowder"},"videos":[],"shorts":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","channel":null,"videos":[],"shorts":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_nf","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/rumble/videos":{"get":{"tags":["Rumble"],"summary":"Get Rumble video","description":"Get metadata for a Rumble video.","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 Rumble video."},"required":true,"description":"Link to the Rumble video.","name":"url","in":"query"}],"responses":{"200":{"description":"Rumble video metadata. 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 video was resolved for this request."},"video":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Rumble video identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public Rumble video URL."},"title":{"type":"string","description":"Video title."},"description":{"type":"string","nullable":true,"description":"Video description text when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Video duration in seconds when available."},"durationFormatted":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishDateText":{"type":"string","nullable":true,"description":"Human-readable publish date label when available."},"metrics":{"type":"object","properties":{"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"dislikes":{"type":"integer","nullable":true,"minimum":0,"description":"Dislike count when available."}},"required":["views","likes","dislikes"],"description":"Engagement metrics for the video."},"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."},"channel":{"type":"object","properties":{"name":{"type":"string","nullable":true,"description":"Channel display name when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"url":{"type":"string","nullable":true,"description":"Canonical public channel URL when available."}},"required":["name","handle","url"],"description":"Uploader channel metadata when available."},"captionTracks":{"type":"array","items":{"type":"object","properties":{"language":{"type":"string","minLength":1,"description":"Caption track language code or key when available."},"label":{"type":"string","nullable":true,"description":"Human-readable caption track label when available."},"url":{"type":"string","minLength":1,"description":"Caption track file URL when available."}},"required":["language","label","url"],"description":"A caption or subtitle track available for the video."},"description":"Caption and subtitle tracks when available."},"embedUrl":{"type":"string","nullable":true,"description":"Embeddable player URL when available."},"shareUrl":{"type":"string","nullable":true,"description":"Share URL when available."},"isLive":{"type":"boolean","description":"Whether the video is a live stream."}},"required":["id","url","title","description","thumbnailUrl","durationSeconds","durationFormatted","publishedAt","publishDateText","metrics","width","height","channel","captionTracks","embedUrl","shareUrl","isLive"],"description":"Video details when found."}},"required":["lookupStatus","video"],"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":"v79xhhm","url":"https://rumble.com/v79xhhm-discovery-why-glenn-wants-israel-to-sue-the-new-york-times.html","title":"DISCOVERY: Why Glenn WANTS Israel to Sue The New York Times","description":"Follow Glenn Greenwald's writing and other journalism at Substack, where you can become a member: https://greenwald.substack.com/ All videos now available as a podcast! Find full episodes here: https:","thumbnailUrl":"https://hugh.cdn.rumble.cloud/video/fwe2/2f/s8/1/k/V/p/o/kVpoA.qR4e-small-DISCOVERY-Why-Glenn-WANTS-I..jpg","durationSeconds":1678,"durationFormatted":"00:27:58","publishedAt":"2026-05-16T11:31:27+00:00","publishDateText":null,"metrics":{"views":17279,"likes":145,"dislikes":3},"width":1920,"height":1080,"channel":{"name":"Glenn Greenwald","handle":"GGreenwald","url":"https://rumble.com/c/GGreenwald"},"captionTracks":[{"language":"en-auto","label":"English (auto)","url":"https://hugh.cdn.rumble.cloud/video/fwe2/2f/s8/11/k/V/p/o/kVpoA.fn8Si.vtt"}],"embedUrl":"https://rumble.com/embed/v77qthe/","shareUrl":"https://rumble.com/share/v79xhhm?src=VoG0dqZG5JZ6uoPQ0mmpV91Vkao2i8JCNcVBpMIgYffXfccYYhMCQA","isLive":false}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","video":null},"meta":{"requestId":"req_01example_not_found","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/rumble/videos/transcript":{"get":{"tags":["Rumble"],"summary":"Get Rumble video transcript","description":"Get captions for a Rumble video when available.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":1,"surcharges":[],"maxCredits":1,"normalizationFailureCredits":0},"x-socialfetch-credits-pricing":"1 credit when a transcript is found; no charge when captions are unavailable.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Link to the Rumble video."},"required":true,"description":"Link to the Rumble video.","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."},"video":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Rumble video identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for the video."}},"required":["id","url"],"description":"Video identity when the lookup resolved."},"transcript":{"type":"object","nullable":true,"properties":{"language":{"type":"string","description":"Human-readable transcript language label when reported by the lookup."},"plainText":{"type":"string","description":"Full transcript text parsed from captions."},"segments":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Transcript segment text."},"startMs":{"type":"integer","minimum":0,"description":"Segment start offset in milliseconds."},"endMs":{"type":"integer","minimum":0,"description":"Segment end offset in milliseconds."}},"required":["text","startMs","endMs"],"description":"One timed transcript segment."},"description":"Timed transcript segments when parsed from captions."}},"required":["language","plainText"],"description":"Transcript content when 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":"v79xhhm","url":"https://rumble.com/v79xhhm-discovery-why-glenn-wants-israel-to-sue-the-new-york-times.html"},"transcript":{"language":"English (auto)","plainText":"Let's get into these questions, and we'll try and get through as many as we can.\nThe first one is from Christi Marbet, who says there were a few questions about this.\nThey want you to comment on the following","segments":[{"text":"Let's get into these questions, and we'll try and get through as many as we can.","startMs":6890,"endMs":11050},{"text":"The first one is from Christi Marbet, who says there were a few questions about this.","startMs":11190,"endMs":15650},{"text":"They want you to comment on the following","startMs":15930,"endMs":17730}]}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","video":{"id":"v79xhhm","url":"https://rumble.com/v79xhhm-discovery-why-glenn-wants-israel-to-sue-the-new-york-times.html"},"transcript":null},"meta":{"requestId":"req_01example_not_found","creditsCharged":0,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/rumble/videos/comments":{"get":{"tags":["Rumble"],"summary":"List Rumble video comments","description":"List top-level comments on a Rumble video.","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 Rumble video."},"required":true,"description":"Link to the Rumble video.","name":"url","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."},"video":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Rumble video identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for the video."}},"required":["id","url"],"description":"Video identity when the lookup resolved."},"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 published."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count on the comment when available."},"dislikeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Dislike count on the comment when available."},"replyCount":{"type":"integer","nullable":true,"minimum":0,"description":"Direct reply count for the comment thread when available."},"author":{"type":"object","properties":{"displayName":{"type":"string","nullable":true,"description":"Display name shown on the commenter profile."},"handle":{"type":"string","nullable":true,"description":"Public Rumble handle when available."},"profileUrl":{"type":"string","nullable":true,"description":"Profile page URL when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the commenter when available."}},"required":["displayName","handle","profileUrl","avatarUrl"],"description":"Comment author."}},"required":["id","text","createdAt","publishedTimeText","likeCount","dislikeCount","replyCount","author"],"description":"A single top-level comment on a Rumble video."},"description":"Top-level comments for the resolved video."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Next page number when more results are available."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for this response."}},"required":["lookupStatus","video","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","video":{"id":"v792vns","url":"https://rumble.com/v792vns-the-splc-is-a-deceitful-and-poisonous-group.-but-was-their-behavior-crimina.html"},"comments":[{"id":"609604348","text":"This is just like Jussie Smollett but on a huger scale -- if we can't find \"white supremacy,\" well, we'll just make that sh*t up. LOLLL","createdAt":"2026-04-27T22:20:00.000Z","publishedTimeText":"3 weeks ago","likeCount":15,"dislikeCount":0,"replyCount":2,"author":{"displayName":"robland","handle":"robland","profileUrl":"https://rumble.com/user/robland","avatarUrl":null}}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","video":null,"comments":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_not_found","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}":{"get":{"tags":["GitHub"],"summary":"Get GitHub profile","description":"Get a GitHub profile for a user or organization.","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":39,"description":"GitHub username to look up, with or without a leading @."},"required":true,"description":"GitHub username 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`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether the profile was found."},"profile":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["github"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"GitHub username (login)."},"displayName":{"type":"string","nullable":true,"description":"Public display name when set on the profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL."},"platformUserId":{"type":"string","description":"GitHub user or organization id as a string."},"nodeId":{"type":"string","description":"GitHub node id when available."},"accountType":{"type":"string","enum":["User","Organization"],"description":"Whether this profile is a user or organization account."},"company":{"type":"string","nullable":true,"description":"Company shown on the profile when available."},"location":{"type":"string","nullable":true,"description":"Location shown on the profile when available."},"blog":{"type":"string","nullable":true,"description":"Blog or website URL from the profile when available."},"email":{"type":"string","nullable":true,"description":"Public email when exposed by GitHub."},"twitterUsername":{"type":"string","nullable":true,"description":"Linked X (Twitter) username when set on the profile."},"siteAdmin":{"type":"boolean","description":"Whether the account is a GitHub site administrator."},"accountCreatedAt":{"type":"string","description":"Account creation timestamp (ISO 8601) when available."},"accountUpdatedAt":{"type":"string","description":"Profile last-updated timestamp (ISO 8601) when available."}},"required":["platform","handle","displayName","bio","avatarUrl","profileUrl","accountType"],"description":"Profile details when available."},"metrics":{"type":"object","nullable":true,"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."},"publicRepos":{"type":"integer","nullable":true,"minimum":0,"description":"Public repository count when available."},"publicGists":{"type":"integer","nullable":true,"minimum":0,"description":"Public gist count when available."}},"required":["followers","following","publicRepos","publicGists"],"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":"github","handle":"torvalds","displayName":"Linus Torvalds","bio":null,"avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","platformUserId":"1024025","nodeId":"MDQ6VXNlcjEwMjQwMjU=","accountType":"User","company":"Linux Foundation","location":"Portland, OR","email":null,"twitterUsername":null,"siteAdmin":false,"accountCreatedAt":"2011-09-03T15:26:22Z","accountUpdatedAt":"2026-06-02T05:33:59Z"},"metrics":{"followers":306179,"following":0,"publicRepos":12,"publicGists":1}},"meta":{"requestId":"req_01example_github_profile","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}/repositories":{"get":{"tags":["GitHub"],"summary":"List GitHub profile repositories","description":"List repositories for a GitHub user or organization.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.repositories` array with `lookupStatus: \"found\"` means the profile resolved but this page returned no repositories."},"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":39,"description":"GitHub username whose public repositories should be listed."},"required":true,"description":"GitHub username whose public repositories 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","enum":["owner","all","member"],"description":"Repository type filter. Defaults to owner."},"required":false,"description":"Repository type filter. Defaults to owner.","name":"type","in":"query"},{"schema":{"type":"string","enum":["created","updated","pushed","full_name"],"description":"Sort field for repositories."},"required":false,"description":"Sort field for repositories.","name":"sort","in":"query"},{"schema":{"type":"string","enum":["asc","desc"],"description":"Sort direction."},"required":false,"description":"Sort direction.","name":"direction","in":"query"}],"responses":{"200":{"description":"Lookup 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 profile resolved for this request."},"repositories":{"type":"array","items":{"type":"object","properties":{"platformRepoId":{"type":"string","description":"GitHub repository id as a string."},"nodeId":{"type":"string","description":"GitHub node id when available."},"name":{"type":"string","description":"Repository name without the owner prefix."},"fullName":{"type":"string","description":"Full repository name in `owner/repo` form."},"owner":{"type":"object","properties":{"platformUserId":{"type":"string","description":"GitHub user or organization id as a string."},"handle":{"type":"string","description":"GitHub login (username)."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL for the owner."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL for the owner."},"accountType":{"type":"string","enum":["User","Organization"],"description":"Whether the owner is a user or organization."}},"required":["platformUserId","handle","avatarUrl","profileUrl","accountType"],"description":"Repository owner."},"isPrivate":{"type":"boolean","description":"Whether the repository is private."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub repository URL."},"description":{"type":"string","nullable":true,"description":"Repository description when available."},"isFork":{"type":"boolean","description":"Whether the repository is a fork."},"homepage":{"type":"string","nullable":true,"description":"Homepage URL when set on the repository."},"language":{"type":"string","nullable":true,"description":"Primary programming language when reported."},"forksCount":{"type":"integer","nullable":true,"minimum":0,"description":"Fork count when available."},"starsCount":{"type":"integer","nullable":true,"minimum":0,"description":"Star count when available."},"watchersCount":{"type":"integer","nullable":true,"minimum":0,"description":"Watcher count when available."},"sizeKb":{"type":"integer","nullable":true,"minimum":0,"description":"Repository size in kilobytes when available."},"defaultBranch":{"type":"string","nullable":true,"description":"Default branch name when available."},"openIssuesCount":{"type":"integer","nullable":true,"minimum":0,"description":"Open issue count when available."},"topics":{"type":"array","items":{"type":"string"},"description":"Repository topic tags when available."},"license":{"type":"object","nullable":true,"properties":{"key":{"type":"string","description":"License key identifier."},"name":{"type":"string","description":"Human-readable license name."},"spdxId":{"type":"string","nullable":true,"description":"SPDX license identifier when available."}},"required":["key","name","spdxId"],"description":"License metadata when available."},"archived":{"type":"boolean","description":"Whether the repository is archived."},"disabled":{"type":"boolean","description":"Whether the repository is disabled."},"visibility":{"type":"string","nullable":true,"description":"Repository visibility label when available."},"pushedAt":{"type":"string","nullable":true,"description":"Last push timestamp (ISO 8601) when available."},"createdAt":{"type":"string","nullable":true,"description":"Creation timestamp (ISO 8601) when available."},"updatedAt":{"type":"string","nullable":true,"description":"Last update timestamp (ISO 8601) when available."}},"required":["platformRepoId","name","fullName","owner","isPrivate","profileUrl","description","isFork","homepage","language","forksCount","starsCount","watchersCount","sizeKb","defaultBranch","openIssuesCount","topics","license","archived","disabled","visibility","pushedAt","createdAt","updatedAt"],"description":"GitHub repository metadata."},"description":"Public repositories for the requested profile page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Opaque cursor for the next page, or null when there is no next page."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state for the current page."}},"required":["lookupStatus","repositories","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","repositories":[{"platformRepoId":"2325298","nodeId":"MDEwOlJlcG9zaXRvcnkyMzI1Mjk4","name":"linux","fullName":"torvalds/linux","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/linux","description":"Linux kernel source tree","isFork":false,"homepage":"","language":"C","forksCount":62741,"starsCount":235824,"watchersCount":235824,"sizeKb":6305272,"defaultBranch":"master","openIssuesCount":3,"topics":[],"license":{"key":"other","name":"Other","spdxId":"NOASSERTION"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-06-08T15:03:19Z","createdAt":"2011-09-04T22:48:12Z","updatedAt":"2026-06-08T15:40:20Z"},{"platformRepoId":"1058343058","nodeId":"R_kgDOPxUIkg","name":"GuitarPedal","fullName":"torvalds/GuitarPedal","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/GuitarPedal","description":"Linus learns analog circuits","isFork":false,"homepage":"","language":"C","forksCount":75,"starsCount":1980,"watchersCount":1980,"sizeKb":6691,"defaultBranch":"main","openIssuesCount":2,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-06-07T19:05:30Z","createdAt":"2025-09-17T01:01:29Z","updatedAt":"2026-06-08T14:46:59Z"},{"platformRepoId":"1257356954","nodeId":"R_kgDOSvG-mg","name":"ScrollWheel","fullName":"torvalds/ScrollWheel","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/ScrollWheel","description":"Minimalist RP2350 magnetic sensor scroll wheel toy project","isFork":false,"homepage":null,"language":"C","forksCount":9,"starsCount":247,"watchersCount":247,"sizeKb":15,"defaultBranch":"main","openIssuesCount":7,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-06-02T15:52:37Z","createdAt":"2026-06-02T15:48:56Z","updatedAt":"2026-06-08T12:31:04Z"},{"platformRepoId":"113099837","nodeId":"MDEwOlJlcG9zaXRvcnkxMTMwOTk4Mzc=","name":"pesconvert","fullName":"torvalds/pesconvert","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/pesconvert","description":"Brother PES file converter","isFork":false,"homepage":null,"language":"C","forksCount":74,"starsCount":561,"watchersCount":561,"sizeKb":17,"defaultBranch":"master","openIssuesCount":6,"topics":[],"license":null,"archived":false,"disabled":false,"visibility":"public","pushedAt":"2022-12-22T10:46:37Z","createdAt":"2017-12-04T21:58:56Z","updatedAt":"2026-06-07T13:21:36Z"},{"platformRepoId":"519408694","nodeId":"R_kgDOHvWMNg","name":"libgit2","fullName":"torvalds/libgit2","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/libgit2","description":"A cross-platform, linkable library implementation of Git that you can use in your application.","isFork":true,"homepage":"https://libgit2.org/","language":"C","forksCount":27,"starsCount":360,"watchersCount":360,"sizeKb":62768,"defaultBranch":"main","openIssuesCount":1,"topics":[],"license":{"key":"other","name":"Other","spdxId":"NOASSERTION"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2023-12-19T11:45:42Z","createdAt":"2022-07-30T03:30:56Z","updatedAt":"2026-06-07T13:21:35Z"},{"platformRepoId":"86106493","nodeId":"MDEwOlJlcG9zaXRvcnk4NjEwNjQ5Mw==","name":"test-tlb","fullName":"torvalds/test-tlb","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/test-tlb","description":"Stupid memory latency and TLB tester","isFork":false,"homepage":null,"language":"C","forksCount":218,"starsCount":1006,"watchersCount":1006,"sizeKb":19,"defaultBranch":"master","openIssuesCount":13,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2024-08-19T21:13:36Z","createdAt":"2017-03-24T20:06:37Z","updatedAt":"2026-06-07T13:21:34Z"},{"platformRepoId":"1130786764","nodeId":"R_kgDOQ2ZvzA","name":"AudioNoise","fullName":"torvalds/AudioNoise","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/AudioNoise","description":"Random digital audio effects","isFork":false,"homepage":null,"language":"C","forksCount":205,"starsCount":4380,"watchersCount":4380,"sizeKb":1428,"defaultBranch":"main","openIssuesCount":32,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-05-08T17:20:22Z","createdAt":"2026-01-09T02:33:29Z","updatedAt":"2026-06-07T11:24:37Z"},{"platformRepoId":"117900805","nodeId":"MDEwOlJlcG9zaXRvcnkxMTc5MDA4MDU=","name":"uemacs","fullName":"torvalds/uemacs","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/uemacs","description":"Random version of microemacs with my private modificatons","isFork":false,"homepage":"","language":"C","forksCount":308,"starsCount":2043,"watchersCount":2043,"sizeKb":478,"defaultBranch":"master","openIssuesCount":13,"topics":[],"license":null,"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-02-25T19:15:47Z","createdAt":"2018-01-17T22:32:21Z","updatedAt":"2026-06-06T21:48:26Z"},{"platformRepoId":"1137038093","nodeId":"R_kgDOQ8XTDQ","name":"HunspellColorize","fullName":"torvalds/HunspellColorize","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/HunspellColorize","description":"Wrapper around 'less' to colorize spelling mistakes using Hunspell","isFork":false,"homepage":null,"language":"C","forksCount":15,"starsCount":346,"watchersCount":346,"sizeKb":15,"defaultBranch":"main","openIssuesCount":2,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-01-19T20:23:09Z","createdAt":"2026-01-18T19:57:03Z","updatedAt":"2026-06-05T08:54:07Z"},{"platformRepoId":"940929652","nodeId":"R_kgDOOBVydA","name":"1590A","fullName":"torvalds/1590A","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/1590A","description":"Random odd guitar pedal design in kicad","isFork":false,"homepage":null,"language":"OpenSCAD","forksCount":21,"starsCount":566,"watchersCount":566,"sizeKb":10882,"defaultBranch":"main","openIssuesCount":0,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":true,"disabled":false,"visibility":"public","pushedAt":"2025-09-19T02:54:14Z","createdAt":"2025-03-01T04:36:29Z","updatedAt":"2026-06-03T19:56:34Z"},{"platformRepoId":"79171906","nodeId":"MDEwOlJlcG9zaXRvcnk3OTE3MTkwNg==","name":"libdc-for-dirk","fullName":"torvalds/libdc-for-dirk","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/libdc-for-dirk","description":"Only use for syncing with Dirk, don't use for anything else","isFork":true,"homepage":"","language":"C","forksCount":51,"starsCount":387,"watchersCount":387,"sizeKb":3743,"defaultBranch":"Subsurface-branch","openIssuesCount":1,"topics":[],"license":{"key":"lgpl-2.1","name":"GNU Lesser General Public License v2.1","spdxId":"LGPL-2.1"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2024-12-26T20:12:43Z","createdAt":"2017-01-17T00:25:49Z","updatedAt":"2026-05-27T10:26:00Z"},{"platformRepoId":"78665021","nodeId":"MDEwOlJlcG9zaXRvcnk3ODY2NTAyMQ==","name":"subsurface-for-dirk","fullName":"torvalds/subsurface-for-dirk","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/subsurface-for-dirk","description":"Do not use - the real upstream is  Subsurface-divelog/subsurface","isFork":true,"homepage":"https://subsurface-divelog.org","language":"C++","forksCount":67,"starsCount":457,"watchersCount":457,"sizeKb":155337,"defaultBranch":"master","openIssuesCount":2,"topics":[],"license":{"key":"gpl-2.0","name":"GNU General Public License v2.0","spdxId":"GPL-2.0"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2024-08-28T08:00:07Z","createdAt":"2017-01-11T18:03:01Z","updatedAt":"2026-05-24T08:35:27Z"}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_profile_repositories","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","repositories":[{"platformRepoId":"2325298","nodeId":"MDEwOlJlcG9zaXRvcnkyMzI1Mjk4","name":"GuitarPedal","fullName":"torvalds/GuitarPedal","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/GuitarPedal","description":"Linus learns analog circuits","isFork":false,"homepage":"","language":"C","forksCount":62741,"starsCount":235824,"watchersCount":235824,"sizeKb":6305272,"defaultBranch":"master","openIssuesCount":3,"topics":[],"license":{"key":"other","name":"Other","spdxId":"NOASSERTION"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-06-08T15:03:19Z","createdAt":"2011-09-04T22:48:12Z","updatedAt":"2026-06-08T15:40:20Z"}],"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example_repos_page_2","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","repositories":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_repos_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","repositories":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_repos_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}/activity":{"get":{"tags":["GitHub"],"summary":"List GitHub profile activity","description":"List recent public activity for a GitHub profile, one month per request.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"This endpoint returns one month of public contribution activity per request. Keep the same `year` on follow-up calls and pass `data.page.nextCursor` as `cursor` to page backward through the year."},"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":39,"description":"GitHub username whose public activity timeline should be listed."},"required":true,"description":"GitHub username whose public activity timeline should be listed.","name":"handle","in":"path"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Calendar year to read activity for. Defaults to the current year when omitted."},"required":false,"description":"Calendar year to read activity for. Defaults to the current year when omitted.","name":"year","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Pagination cursor from a previous response (`data.page.nextCursor`). Pages backward one month at a time through the selected year."},"required":false,"description":"Pagination cursor from a previous response (`data.page.nextCursor`). Pages backward one month at a time through the selected year.","name":"cursor","in":"query"}],"responses":{"200":{"description":"GitHub profile activity for one month. 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 activity could be listed for this handle."},"username":{"type":"string","nullable":true,"description":"GitHub username for the activity page when found."},"year":{"type":"integer","nullable":true,"description":"Calendar year covered by this activity page when found."},"month":{"type":"string","nullable":true,"description":"Human-readable month label for this page when found."},"activity":{"type":"array","items":{"type":"object","properties":{"summary":{"type":"string","description":"Activity group summary heading."},"details":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Full activity detail text."},"repository":{"type":"object","nullable":true,"properties":{"text":{"type":"string","description":"Repository label text."},"url":{"type":"string","minLength":1,"description":"Repository URL."}},"required":["text","url"],"description":"Linked repository when present."},"links":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Link label text."},"url":{"type":"string","minLength":1,"description":"Destination URL."}},"required":["text","url"],"description":"Hyperlink within a GitHub activity detail row."},"description":"Structured links parsed from the activity row."},"language":{"type":"string","nullable":true,"description":"Programming language mentioned in the row when available."},"dateText":{"type":"string","nullable":true,"description":"Short date label when available."},"dateDescription":{"type":"string","nullable":true,"description":"Longer date description when available."}},"required":["text","repository","links","language","dateText","dateDescription"],"description":"Single line item within a GitHub profile activity group."},"description":"Detail rows under this activity group."}},"required":["summary","details"],"description":"Grouped contribution activity for one month slice."},"description":"Contribution activity groups for the requested month."},"noActivity":{"type":"boolean","description":"Whether GitHub reports no public activity for this month. An empty `activity` array with `noActivity: true` is still `lookupStatus: found`."},"message":{"type":"string","nullable":true,"description":"Optional message when provided."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Opaque cursor for the next page, or null when there is no next page."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state. Pass `year` and `cursor` from this response to page backward through the year."}},"required":["lookupStatus","username","year","month","activity","noActivity","message","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":{"lookupStatus":"found","username":"torvalds","year":2025,"month":"December 2025","activity":[{"summary":"Created 336 commits in 2 repositories","details":[{"text":"torvalds/linux 314 commits","repository":{"text":"torvalds/linux","url":"https://github.com/torvalds/linux"},"links":[{"text":"torvalds/linux","url":"https://github.com/torvalds/linux"},{"text":"314 commits","url":"https://github.com/torvalds/linux/commits?author=torvalds&since=2025-12-01&until=2026-01-01"}],"language":null,"dateText":null,"dateDescription":null},{"text":"torvalds/GuitarPedal 22 commits","repository":{"text":"torvalds/GuitarPedal","url":"https://github.com/torvalds/GuitarPedal"},"links":[{"text":"torvalds/GuitarPedal","url":"https://github.com/torvalds/GuitarPedal"},{"text":"22 commits","url":"https://github.com/torvalds/GuitarPedal/commits?author=torvalds&since=2025-12-01&until=2026-01-01"}],"language":null,"dateText":null,"dateDescription":null}]}],"noActivity":false,"message":null,"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example_github_profile_activity","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","username":"torvalds","year":2025,"month":"November 2025","activity":[],"noActivity":true,"message":null,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_activity_page2","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","username":null,"year":null,"month":null,"activity":[],"noActivity":false,"message":null,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_activity_nf","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}/followers":{"get":{"tags":["GitHub"],"summary":"List GitHub profile followers","description":"List followers for a GitHub 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.","disambiguation":"Use `lookupStatus` to distinguish found and not_found. Call `GET /v1/github/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":39,"description":"GitHub username whose followers should be listed."},"required":true,"description":"GitHub username whose followers should be listed.","name":"handle","in":"path"},{"schema":{"type":"string","minLength":1,"description":"Pagination cursor from a previous response (numeric page index as a string)."},"required":false,"description":"Pagination cursor from a previous response (numeric page index as a string).","name":"cursor","in":"query"}],"responses":{"200":{"description":"Followers for the requested profile. Check `data.lookupStatus` and `data.page` for pagination.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether followers could be listed for this handle."},"followers":{"type":"array","items":{"type":"object","properties":{"platformUserId":{"type":"string","description":"GitHub user id as a string."},"nodeId":{"type":"string","description":"GitHub node id when available."},"handle":{"type":"string","description":"GitHub login (username)."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL."},"accountType":{"type":"string","enum":["User","Organization"],"description":"Whether this account is a user or organization."},"siteAdmin":{"type":"boolean","description":"Whether the account is a GitHub site administrator."}},"required":["platformUserId","handle","avatarUrl","profileUrl","accountType"],"description":"Compact GitHub user reference."},"description":"Followers for the requested profile page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Opaque cursor for the next page, or null when there is no next page."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state for the current page."}},"required":["lookupStatus","followers","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":{"lookupStatus":"found","followers":[{"platformUserId":"206","nodeId":"MDQ6VXNlcjIwNg==","handle":"sprsquish","avatarUrl":"https://avatars.githubusercontent.com/u/206?v=4","profileUrl":"https://github.com/sprsquish","accountType":"User","siteAdmin":false},{"platformUserId":"365","nodeId":"MDQ6VXNlcjM2NQ==","handle":"pius","avatarUrl":"https://avatars.githubusercontent.com/u/365?v=4","profileUrl":"https://github.com/pius","accountType":"User","siteAdmin":false},{"platformUserId":"389","nodeId":"MDQ6VXNlcjM4OQ==","handle":"therubymug","avatarUrl":"https://avatars.githubusercontent.com/u/389?v=4","profileUrl":"https://github.com/therubymug","accountType":"User","siteAdmin":false},{"platformUserId":"397","nodeId":"MDQ6VXNlcjM5Nw==","handle":"crafterm","avatarUrl":"https://avatars.githubusercontent.com/u/397?v=4","profileUrl":"https://github.com/crafterm","accountType":"User","siteAdmin":false},{"platformUserId":"529","nodeId":"MDQ6VXNlcjUyOQ==","handle":"auser","avatarUrl":"https://avatars.githubusercontent.com/u/529?v=4","profileUrl":"https://github.com/auser","accountType":"User","siteAdmin":false},{"platformUserId":"572","nodeId":"MDQ6VXNlcjU3Mg==","handle":"jarib","avatarUrl":"https://avatars.githubusercontent.com/u/572?v=4","profileUrl":"https://github.com/jarib","accountType":"User","siteAdmin":false},{"platformUserId":"577","nodeId":"MDQ6VXNlcjU3Nw==","handle":"komapa","avatarUrl":"https://avatars.githubusercontent.com/u/577?v=4","profileUrl":"https://github.com/komapa","accountType":"User","siteAdmin":false},{"platformUserId":"702","nodeId":"MDQ6VXNlcjcwMg==","handle":"gjnoonan","avatarUrl":"https://avatars.githubusercontent.com/u/702?v=4","profileUrl":"https://github.com/gjnoonan","accountType":"User","siteAdmin":false},{"platformUserId":"763","nodeId":"MDQ6VXNlcjc2Mw==","handle":"malkomalko","avatarUrl":"https://avatars.githubusercontent.com/u/763?v=4","profileUrl":"https://github.com/malkomalko","accountType":"User","siteAdmin":false},{"platformUserId":"822","nodeId":"MDQ6VXNlcjgyMg==","handle":"peleteiro","avatarUrl":"https://avatars.githubusercontent.com/u/822?v=4","profileUrl":"https://github.com/peleteiro","accountType":"User","siteAdmin":false},{"platformUserId":"851","nodeId":"MDQ6VXNlcjg1MQ==","handle":"mountain","avatarUrl":"https://avatars.githubusercontent.com/u/851?v=4","profileUrl":"https://github.com/mountain","accountType":"User","siteAdmin":false},{"platformUserId":"868","nodeId":"MDQ6VXNlcjg2OA==","handle":"scotu","avatarUrl":"https://avatars.githubusercontent.com/u/868?v=4","profileUrl":"https://github.com/scotu","accountType":"User","siteAdmin":false},{"platformUserId":"870","nodeId":"MDQ6VXNlcjg3MA==","handle":"mmmurf","avatarUrl":"https://avatars.githubusercontent.com/u/870?v=4","profileUrl":"https://github.com/mmmurf","accountType":"User","siteAdmin":false},{"platformUserId":"884","nodeId":"MDQ6VXNlcjg4NA==","handle":"codeslinger","avatarUrl":"https://avatars.githubusercontent.com/u/884?v=4","profileUrl":"https://github.com/codeslinger","accountType":"User","siteAdmin":false},{"platformUserId":"919","nodeId":"MDQ6VXNlcjkxOQ==","handle":"amiroff","avatarUrl":"https://avatars.githubusercontent.com/u/919?v=4","profileUrl":"https://github.com/amiroff","accountType":"User","siteAdmin":false},{"platformUserId":"927","nodeId":"MDQ6VXNlcjkyNw==","handle":"constantine-nikolaou","avatarUrl":"https://avatars.githubusercontent.com/u/927?v=4","profileUrl":"https://github.com/constantine-nikolaou","accountType":"User","siteAdmin":false},{"platformUserId":"948","nodeId":"MDQ6VXNlcjk0OA==","handle":"jonuts","avatarUrl":"https://avatars.githubusercontent.com/u/948?v=4","profileUrl":"https://github.com/jonuts","accountType":"User","siteAdmin":false},{"platformUserId":"975","nodeId":"MDQ6VXNlcjk3NQ==","handle":"ktheory","avatarUrl":"https://avatars.githubusercontent.com/u/975?v=4","profileUrl":"https://github.com/ktheory","accountType":"User","siteAdmin":false},{"platformUserId":"1014","nodeId":"MDQ6VXNlcjEwMTQ=","handle":"sunfmin","avatarUrl":"https://avatars.githubusercontent.com/u/1014?v=4","profileUrl":"https://github.com/sunfmin","accountType":"User","siteAdmin":false},{"platformUserId":"1056","nodeId":"MDQ6VXNlcjEwNTY=","handle":"ludwig","avatarUrl":"https://avatars.githubusercontent.com/u/1056?v=4","profileUrl":"https://github.com/ludwig","accountType":"User","siteAdmin":false},{"platformUserId":"1060","nodeId":"MDQ6VXNlcjEwNjA=","handle":"andrew","avatarUrl":"https://avatars.githubusercontent.com/u/1060?v=4","profileUrl":"https://github.com/andrew","accountType":"User","siteAdmin":false},{"platformUserId":"1080","nodeId":"MDQ6VXNlcjEwODA=","handle":"frac","avatarUrl":"https://avatars.githubusercontent.com/u/1080?v=4","profileUrl":"https://github.com/frac","accountType":"User","siteAdmin":false},{"platformUserId":"1083","nodeId":"MDQ6VXNlcjEwODM=","handle":"maxterry","avatarUrl":"https://avatars.githubusercontent.com/u/1083?v=4","profileUrl":"https://github.com/maxterry","accountType":"User","siteAdmin":false},{"platformUserId":"1096","nodeId":"MDQ6VXNlcjEwOTY=","handle":"wmoxam","avatarUrl":"https://avatars.githubusercontent.com/u/1096?v=4","profileUrl":"https://github.com/wmoxam","accountType":"User","siteAdmin":false},{"platformUserId":"1099","nodeId":"MDQ6VXNlcjEwOTk=","handle":"shillcock","avatarUrl":"https://avatars.githubusercontent.com/u/1099?v=4","profileUrl":"https://github.com/shillcock","accountType":"User","siteAdmin":false},{"platformUserId":"1120","nodeId":"MDQ6VXNlcjExMjA=","handle":"mtarbit","avatarUrl":"https://avatars.githubusercontent.com/u/1120?v=4","profileUrl":"https://github.com/mtarbit","accountType":"User","siteAdmin":false},{"platformUserId":"1202","nodeId":"MDQ6VXNlcjEyMDI=","handle":"rapind","avatarUrl":"https://avatars.githubusercontent.com/u/1202?v=4","profileUrl":"https://github.com/rapind","accountType":"User","siteAdmin":false},{"platformUserId":"1215","nodeId":"MDQ6VXNlcjEyMTU=","handle":"ryanwilliams","avatarUrl":"https://avatars.githubusercontent.com/u/1215?v=4","profileUrl":"https://github.com/ryanwilliams","accountType":"User","siteAdmin":false},{"platformUserId":"1276","nodeId":"MDQ6VXNlcjEyNzY=","handle":"jerry","avatarUrl":"https://avatars.githubusercontent.com/u/1276?v=4","profileUrl":"https://github.com/jerry","accountType":"User","siteAdmin":false},{"platformUserId":"1319","nodeId":"MDQ6VXNlcjEzMTk=","handle":"marrone","avatarUrl":"https://avatars.githubusercontent.com/u/1319?v=4","profileUrl":"https://github.com/marrone","accountType":"User","siteAdmin":false}],"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example_github_profile_followers","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","followers":[{"platformUserId":"999","nodeId":"MDQ6VXNlcjIwNg==","handle":"example.page2","avatarUrl":"https://avatars.githubusercontent.com/u/206?v=4","profileUrl":"https://github.com/example.page2","accountType":"User","siteAdmin":false}],"page":{"nextCursor":"3","hasMore":true}},"meta":{"requestId":"req_01example_github_followers_page_2","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","followers":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_followers_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","followers":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_followers_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}/following":{"get":{"tags":["GitHub"],"summary":"List GitHub profile following","description":"List accounts a GitHub profile follows.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.following` 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 and not_found. Call `GET /v1/github/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":39,"description":"GitHub username whose following list should be listed."},"required":true,"description":"GitHub username whose following list should be listed.","name":"handle","in":"path"},{"schema":{"type":"string","minLength":1,"description":"Pagination cursor from a previous response (numeric page index as a string)."},"required":false,"description":"Pagination cursor from a previous response (numeric page index as a string).","name":"cursor","in":"query"}],"responses":{"200":{"description":"Accounts followed by the requested GitHub profile.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether following could be listed for this handle."},"following":{"type":"array","items":{"type":"object","properties":{"platformUserId":{"type":"string","description":"GitHub user id as a string."},"nodeId":{"type":"string","description":"GitHub node id when available."},"handle":{"type":"string","description":"GitHub login (username)."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL."},"accountType":{"type":"string","enum":["User","Organization"],"description":"Whether this account is a user or organization."},"siteAdmin":{"type":"boolean","description":"Whether the account is a GitHub site administrator."}},"required":["platformUserId","handle","avatarUrl","profileUrl","accountType"],"description":"Compact GitHub user reference."},"description":"Accounts followed by the requested profile."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Opaque cursor for the next page, or null when there is no next page."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination state for the current page."}},"required":["lookupStatus","following","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":{"lookupStatus":"found","following":[{"platformUserId":"4303","nodeId":"MDQ6VXNlcjQzMDM=","handle":"jdalton","avatarUrl":"https://avatars.githubusercontent.com/u/4303?v=4","profileUrl":"https://github.com/jdalton","accountType":"User","siteAdmin":false},{"platformUserId":"17031","nodeId":"MDQ6VXNlcjE3MDMx","handle":"jlongster","avatarUrl":"https://avatars.githubusercontent.com/u/17031?v=4","profileUrl":"https://github.com/jlongster","accountType":"User","siteAdmin":false}],"page":{"nextCursor":"2","hasMore":true}},"meta":{"requestId":"req_01example_github_profile_following","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","following":[{"platformUserId":"999","nodeId":"MDQ6VXNlcjQzMDM=","handle":"example.page2","avatarUrl":"https://avatars.githubusercontent.com/u/4303?v=4","profileUrl":"https://github.com/example.page2","accountType":"User","siteAdmin":false}],"page":{"nextCursor":"3","hasMore":true}},"meta":{"requestId":"req_01example_github_following_page_2","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","following":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_following_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","following":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_github_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/profiles/{handle}/contributions":{"get":{"tags":["GitHub"],"summary":"Get GitHub profile contributions","description":"Get the contribution graph for a GitHub profile for a given year.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Optional `year` defaults to the current calendar year when omitted. Contribution counts reflect public GitHub activity for that year."},"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":39,"description":"GitHub username to look up, with or without a leading @."},"required":true,"description":"GitHub username to look up, with or without a leading @.","name":"handle","in":"path"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Calendar year for the contribution graph. Defaults to the current year when omitted."},"required":false,"description":"Calendar year for the contribution graph. Defaults to the current year when omitted.","name":"year","in":"query"}],"responses":{"200":{"description":"Lookup 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 contribution data was found for the requested user and year."},"contributions":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","description":"GitHub username for the contribution graph."},"year":{"type":"integer","description":"Calendar year covered by the graph."},"totalContributions":{"type":"integer","minimum":0,"description":"Total contributions in the selected year."},"days":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","description":"Calendar date for this cell (YYYY-MM-DD)."},"contributionCount":{"type":"integer","minimum":0,"description":"Number of contributions on this day."},"color":{"type":"string","nullable":true,"description":"Heatmap cell color when provided."},"intensity":{"type":"integer","minimum":0,"description":"Contribution intensity level for the heatmap cell."}},"required":["date","contributionCount","color","intensity"],"description":"Single day in a GitHub contribution graph."},"description":"Per-day contribution counts for the heatmap."}},"required":["handle","year","totalContributions","days"],"description":"Contribution graph for the selected year when available."}},"required":["lookupStatus","contributions"],"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","contributions":{"handle":"torvalds","year":2026,"totalContributions":1214,"days":[{"date":"2026-01-01","contributionCount":4,"color":null,"intensity":1},{"date":"2026-01-02","contributionCount":16,"color":null,"intensity":2},{"date":"2026-01-03","contributionCount":3,"color":null,"intensity":1}]}},"meta":{"requestId":"req_01example_github_profile_contributions","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","contributions":null},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle, year, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/repositories":{"get":{"tags":["GitHub"],"summary":"Get GitHub repository","description":"Get a single GitHub repository by URL.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use this endpoint for one repository when you have a full `owner/repo` URL. To list every public repository for a user, use the profile repositories list endpoint instead."},"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 GitHub repository URL."},"required":true,"description":"Full public GitHub repository URL.","name":"url","in":"query"}],"responses":{"200":{"description":"Repository lookup 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 repository was found."},"repository":{"type":"object","nullable":true,"properties":{"platformRepoId":{"type":"string","description":"GitHub repository id as a string."},"nodeId":{"type":"string","description":"GitHub node id when available."},"name":{"type":"string","description":"Repository name without the owner prefix."},"fullName":{"type":"string","description":"Full repository name in `owner/repo` form."},"owner":{"type":"object","properties":{"platformUserId":{"type":"string","description":"GitHub user or organization id as a string."},"handle":{"type":"string","description":"GitHub login (username)."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL for the owner."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL for the owner."},"accountType":{"type":"string","enum":["User","Organization"],"description":"Whether the owner is a user or organization."}},"required":["platformUserId","handle","avatarUrl","profileUrl","accountType"],"description":"Repository owner."},"isPrivate":{"type":"boolean","description":"Whether the repository is private."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub repository URL."},"description":{"type":"string","nullable":true,"description":"Repository description when available."},"isFork":{"type":"boolean","description":"Whether the repository is a fork."},"homepage":{"type":"string","nullable":true,"description":"Homepage URL when set on the repository."},"language":{"type":"string","nullable":true,"description":"Primary programming language when reported."},"forksCount":{"type":"integer","nullable":true,"minimum":0,"description":"Fork count when available."},"starsCount":{"type":"integer","nullable":true,"minimum":0,"description":"Star count when available."},"watchersCount":{"type":"integer","nullable":true,"minimum":0,"description":"Watcher count when available."},"sizeKb":{"type":"integer","nullable":true,"minimum":0,"description":"Repository size in kilobytes when available."},"defaultBranch":{"type":"string","nullable":true,"description":"Default branch name when available."},"openIssuesCount":{"type":"integer","nullable":true,"minimum":0,"description":"Open issue count when available."},"topics":{"type":"array","items":{"type":"string"},"description":"Repository topic tags when available."},"license":{"type":"object","nullable":true,"properties":{"key":{"type":"string","description":"License key identifier."},"name":{"type":"string","description":"Human-readable license name."},"spdxId":{"type":"string","nullable":true,"description":"SPDX license identifier when available."}},"required":["key","name","spdxId"],"description":"License metadata when available."},"archived":{"type":"boolean","description":"Whether the repository is archived."},"disabled":{"type":"boolean","description":"Whether the repository is disabled."},"visibility":{"type":"string","nullable":true,"description":"Repository visibility label when available."},"pushedAt":{"type":"string","nullable":true,"description":"Last push timestamp (ISO 8601) when available."},"createdAt":{"type":"string","nullable":true,"description":"Creation timestamp (ISO 8601) when available."},"updatedAt":{"type":"string","nullable":true,"description":"Last update timestamp (ISO 8601) when available."}},"required":["platformRepoId","name","fullName","owner","isPrivate","profileUrl","description","isFork","homepage","language","forksCount","starsCount","watchersCount","sizeKb","defaultBranch","openIssuesCount","topics","license","archived","disabled","visibility","pushedAt","createdAt","updatedAt"],"description":"Repository metadata when available."}},"required":["lookupStatus","repository"],"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","repository":{"platformRepoId":"2325298","nodeId":"MDEwOlJlcG9zaXRvcnkyMzI1Mjk4","name":"linux","fullName":"torvalds/linux","owner":{"platformUserId":"1024025","handle":"torvalds","avatarUrl":"https://avatars.githubusercontent.com/u/1024025?v=4","profileUrl":"https://github.com/torvalds","accountType":"User"},"isPrivate":false,"profileUrl":"https://github.com/torvalds/linux","description":"Linux kernel source tree","isFork":false,"homepage":"","language":"C","forksCount":62741,"starsCount":235824,"watchersCount":235824,"sizeKb":6305272,"defaultBranch":"master","openIssuesCount":3,"topics":[],"license":{"key":"other","name":"Other","spdxId":"NOASSERTION"},"archived":false,"disabled":false,"visibility":"public","pushedAt":"2026-06-08T15:03:19Z","createdAt":"2011-09-04T22:48:12Z","updatedAt":"2026-06-08T15:40:20Z"}},"meta":{"requestId":"req_01example_github_repository","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","repository":null},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid repository URL 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/trending/repositories":{"get":{"tags":["GitHub"],"summary":"List GitHub trending repositories","description":"List trending GitHub repositories for a language and time window.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.repositories` array means GitHub returned no trending repositories for the selected filters.","disambiguation":"Use `since` (`daily`, `weekly`, `monthly`) and optional `language` / `spokenLanguageCode` to narrow results. For trending developers instead of repositories, use the trending developers endpoint."},"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,"description":"Optional coding language filter."},"required":false,"description":"Optional coding language filter.","name":"language","in":"query"},{"schema":{"type":"string","enum":["daily","weekly","monthly"],"description":"Trending time window. Defaults to daily when omitted."},"required":false,"description":"Trending time window. Defaults to daily when omitted.","name":"since","in":"query"},{"schema":{"type":"string","minLength":1,"description":"Optional spoken language code filter."},"required":false,"description":"Optional spoken language code filter.","name":"spokenLanguageCode","in":"query"}],"responses":{"200":{"description":"Trending GitHub repositories for this request.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"since":{"type":"string","enum":["daily","weekly","monthly"],"description":"Trending time window applied to this response."},"language":{"type":"string","nullable":true,"description":"Coding language filter applied to this response, or null when unfiltered."},"spokenLanguageCode":{"type":"string","nullable":true,"description":"Spoken language filter applied to this response, or null when unfiltered."},"repositories":{"type":"array","items":{"type":"object","properties":{"rank":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Position on the trending repositories page."},"owner":{"type":"string","description":"Repository owner login."},"repo":{"type":"string","description":"Repository name without the owner prefix."},"fullName":{"type":"string","description":"Full repository name in `owner/repo` form."},"url":{"type":"string","minLength":1,"description":"Canonical public repository URL."},"description":{"type":"string","nullable":true,"description":"Repository description when available."},"language":{"type":"string","nullable":true,"description":"Primary language label when available."},"languageColor":{"type":"string","nullable":true,"description":"Hex color for the language badge when available."},"starsCount":{"type":"integer","nullable":true,"minimum":0,"description":"Total star count when available."},"forksCount":{"type":"integer","nullable":true,"minimum":0,"description":"Total fork count when available."},"starsToday":{"type":"integer","nullable":true,"minimum":0,"description":"Stars gained in the selected trending window."},"starsTodayText":{"type":"string","nullable":true,"description":"Human-readable stars-gained label when available."},"builtBy":{"type":"array","items":{"type":"object","properties":{"username":{"type":"string","description":"GitHub username shown in built-by avatars."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL for the contributor."}},"required":["username","avatarUrl"],"description":"Contributor credited on a trending repository card."},"description":"Users credited as built-by contributors when shown."}},"required":["rank","owner","repo","fullName","url","description","language","languageColor","starsCount","forksCount","starsToday","starsTodayText","builtBy"],"description":"Repository entry from GitHub trending."},"description":"Trending GitHub repositories for the selected filters, in rank order."},"totalResults":{"type":"integer","minimum":0,"description":"Number of repositories in data.repositories for this response."}},"required":["since","language","spokenLanguageCode","repositories","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":{"since":"daily","language":null,"spokenLanguageCode":null,"repositories":[{"rank":1,"owner":"anthropics","repo":"claude-plugins-official","fullName":"anthropics/claude-plugins-official","url":"https://github.com/anthropics/claude-plugins-official","description":"Official, Anthropic-managed directory of high quality Claude Code Plugins.","language":"Python","languageColor":"#3572A5","starsCount":22064,"forksCount":2627,"starsToday":891,"starsTodayText":"891 stars today","builtBy":[{"username":"bryan-anthropic","avatarUrl":"https://avatars.githubusercontent.com/u/238056179?s=40&v=4"},{"username":"tobinsouth","avatarUrl":"https://avatars.githubusercontent.com/u/32489862?s=40&v=4"}]},{"rank":2,"owner":"colbymchenry","repo":"codegraph","fullName":"colbymchenry/codegraph","url":"https://github.com/colbymchenry/codegraph","description":"Pre-indexed code knowledge graph for Claude Code, Codex, Cursor, and OpenCode — fewer tokens, fewer tool calls, 100% local","language":"TypeScript","languageColor":"#3178c6","starsCount":12987,"forksCount":744,"starsToday":4222,"starsTodayText":"4,222 stars today","builtBy":[{"username":"colbymchenry","avatarUrl":"https://avatars.githubusercontent.com/u/18431132?s=40&v=4"}]}],"totalResults":2},"meta":{"requestId":"req_01example_github_trending_repositories","creditsCharged":1,"version":"v1"}}},"filtered":{"value":{"data":{"since":"weekly","language":"javascript","spokenLanguageCode":"en","repositories":[{"rank":1,"owner":"example","repo":"weekly-js","fullName":"example/weekly-js","url":"https://github.com/example/weekly-js","description":"Example weekly JavaScript trending repository.","language":"JavaScript","languageColor":"#f1e05a","starsCount":1200,"forksCount":45,"starsToday":320,"starsTodayText":"320 stars this week","builtBy":[]}],"totalResults":1},"meta":{"requestId":"req_01example_github_trending_repos_filtered","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"since":"daily","language":null,"spokenLanguageCode":null,"repositories":[],"totalResults":0},"meta":{"requestId":"req_01example_github_trending_repos_empty","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid query parameters 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/github/trending/developers":{"get":{"tags":["GitHub"],"summary":"List GitHub trending developers","description":"List trending GitHub developers for a language and time window.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.developers` array means GitHub returned no trending developers for the selected filters.","disambiguation":"Use `since` (`daily`, `weekly`, `monthly`) and optional `language` to narrow results. Each developer may include `popularRepository` when GitHub highlights one. For trending repositories instead of developers, use the trending repositories endpoint."},"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,"description":"Optional trending coding language filter."},"required":false,"description":"Optional trending coding language filter.","name":"language","in":"query"},{"schema":{"type":"string","enum":["daily","weekly","monthly"],"description":"Trending time window. Defaults to daily when omitted."},"required":false,"description":"Trending time window. Defaults to daily when omitted.","name":"since","in":"query"}],"responses":{"200":{"description":"Trending developers for the selected filters (see `data.totalResults`).","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"since":{"type":"string","enum":["daily","weekly","monthly"],"description":"Trending time window applied to this response."},"language":{"type":"string","nullable":true,"description":"Coding language filter applied to this response, or null when all languages are included."},"developers":{"type":"array","items":{"type":"object","properties":{"rank":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Position on the trending developers page."},"handle":{"type":"string","description":"GitHub username."},"displayName":{"type":"string","nullable":true,"description":"Display name when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public GitHub profile URL."},"avatarUrl":{"type":"string","nullable":true,"description":"Avatar image URL when available."},"popularRepository":{"type":"object","nullable":true,"properties":{"owner":{"type":"string","description":"Popular repository owner login."},"repo":{"type":"string","description":"Popular repository name."},"fullName":{"type":"string","description":"Full repository name in `owner/repo` form."},"url":{"type":"string","minLength":1,"description":"Canonical public repository URL."},"name":{"type":"string","description":"Display name for the popular repository when shown."},"description":{"type":"string","nullable":true,"description":"Repository description when available."}},"required":["owner","repo","fullName","url","name","description"],"description":"Popular repository GitHub highlights for this developer."}},"required":["rank","handle","displayName","profileUrl","avatarUrl","popularRepository"],"description":"Developer entry from GitHub trending."},"description":"Ranked trending developers for the selected filters. Each entry may include a popularRepository when GitHub shows one."},"totalResults":{"type":"integer","minimum":0,"description":"Number of developers in `data.developers` for this response."}},"required":["since","language","developers","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":{"since":"daily","language":"javascript","developers":[{"rank":1,"handle":"koala73","displayName":"Elie Habib","profileUrl":"https://github.com/koala73","avatarUrl":"https://avatars.githubusercontent.com/u/996596?s=96&v=4","popularRepository":{"owner":"koala73","repo":"worldmonitor","fullName":"koala73/worldmonitor","url":"https://github.com/koala73/worldmonitor","name":"worldmonitor","description":"Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified s…"}},{"rank":2,"handle":"sonichi","displayName":"Chi Wang","profileUrl":"https://github.com/sonichi","avatarUrl":"https://avatars.githubusercontent.com/u/4250911?s=96&v=4","popularRepository":{"owner":"sonichi","repo":"sutando","fullName":"sonichi/sutando","url":"https://github.com/sonichi/sutando","name":"sutando","description":"My AI Stand. Realtime by day, rewriting itself by night. Summon my AI superpower."}}],"totalResults":2},"meta":{"requestId":"req_01example_github_trending_developers","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"since":"daily","language":null,"developers":[],"totalResults":0},"meta":{"requestId":"req_01example_github_trending_developers_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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/spotify/artist":{"get":{"tags":["Spotify"],"summary":"Get Spotify artist","description":"Get a Spotify artist by id or profile 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":128,"description":"Optional Spotify artist id for the request."},"required":false,"description":"Optional Spotify artist id for the request.","name":"artistId","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Optional Spotify artist URL for the request."},"required":false,"description":"Optional Spotify artist URL for the request.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 artist was found."},"artist":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["spotify"],"description":"Platform for this artist."},"artistId":{"type":"string","minLength":1,"description":"Stable Spotify artist identifier."},"displayName":{"type":"string","minLength":1,"description":"Public display name for the artist."},"bio":{"type":"string","nullable":true,"description":"Artist biography text when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify artist profile URL."},"verified":{"type":"boolean","description":"Whether the artist is marked as verified on Spotify."},"externalLinks":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Link label as shown on the artist profile."},"url":{"type":"string","minLength":1,"description":"Outbound URL for this link."}},"required":["name","url"],"description":"External link on a Spotify artist profile."},"description":"Outbound profile links when available."}},"required":["platform","artistId","displayName","bio","avatarUrl","profileUrl","verified"],"description":"Artist details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count for the artist."},"monthlyListeners":{"type":"integer","minimum":0,"description":"Monthly listener count when available."},"worldRank":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Global popularity rank when available."},"topCities":{"type":"array","items":{"type":"object","properties":{"city":{"type":"string","minLength":1,"description":"City name."},"country":{"type":"string","minLength":1,"description":"ISO country code when available."},"listeners":{"type":"integer","minimum":0,"description":"Monthly listener count for this city when available."},"region":{"type":"string","description":"Region code within the country when available."}},"required":["city","country","listeners"],"description":"Top listener city for an artist."},"description":"Top listener cities when available."}},"required":["followers"],"description":"Artist metrics when available."},"relatedArtists":{"type":"array","items":{"type":"object","properties":{"artistId":{"type":"string","minLength":1,"description":"Related artist Spotify id."},"displayName":{"type":"string","minLength":1,"description":"Related artist display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available avatar URL for the related artist."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify URL for the related artist."}},"required":["artistId","displayName","avatarUrl","profileUrl"],"description":"Related Spotify artist summary."},"description":"Related artists when available (may be empty)."},"discographySummary":{"type":"object","properties":{"albumCount":{"type":"integer","minimum":0,"description":"Number of albums listed in the artist discography."},"singleCount":{"type":"integer","minimum":0,"description":"Number of singles listed in the artist discography."},"compilationCount":{"type":"integer","minimum":0,"description":"Number of compilations listed in the artist discography."}},"required":["albumCount","singleCount","compilationCount"],"description":"Discography counts when available."}},"required":["lookupStatus","artist","metrics","relatedArtists"],"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","artist":{"platform":"spotify","artistId":"1uNFoZAHBGtllmzznpCI3s","displayName":"Justin Bieber","bio":"Since his emergence in 2008, Justin Bieber has quietly worked towards delivering a career-defining artistic statement with his 2025 seventh full-length album, SWAG via Def Jam Recordings. Beyond writing songs and performing, he co-produced the LP which is a 21-track opus evocative of his evolution, yet indicative of the signature spirit millions of fans first fell in love with. \n\nUp to this point, he has smashed countless records, captivated crowds globally and led 21st century pop music and culture as both the preeminent entertainer of his generation and a peerless boundary-pushing creative force. From humble beginnings in Ontario, Canada, the Los Angeles-based singer, songwriter, and producer has elevated to one of the best-selling artists in history, moving over 150 million albums worldwide, generating nearly 200 billion streams, and scoring an astonishing 5 RIAA Diamond certifications. Speaking to his versatility, he has also delivered cross-generational hits in genres as diverse as pop, electronic, hip-hop, R&amp;B, Latin, and more. With SWAG, he continues an unbelievable journey as an era-defining superstar whose influence is unstoppable and unparalleled.","avatarUrl":null,"profileUrl":"https://open.spotify.com/artist/1uNFoZAHBGtllmzznpCI3s?si=4W1DlCLSTR2plslOINBq_A","verified":true},"metrics":{"followers":90965890,"monthlyListeners":143198848,"worldRank":1,"topCities":[{"city":"London","country":"GB","listeners":2216095,"region":"ENG"},{"city":"São Paulo","country":"BR","listeners":1847775,"region":"SP"},{"city":"Jakarta","country":"ID","listeners":1639263,"region":"JK"},{"city":"Quezon City","country":"PH","listeners":1476119,"region":"00"},{"city":"Mexico City","country":"MX","listeners":1424041,"region":"CMX"}]},"relatedArtists":[{"artistId":"0du5cEVh5yTK9QJze8zA0C","displayName":"Bruno Mars","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebc7688aad1bf03986934d7e26","profileUrl":"https://open.spotify.com/artist/0du5cEVh5yTK9QJze8zA0C"},{"artistId":"66CXWjxzNUsdJxJ2JdwvnR","displayName":"Ariana Grande","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb766397ec42a573a53eb5fb87","profileUrl":"https://open.spotify.com/artist/66CXWjxzNUsdJxJ2JdwvnR"},{"artistId":"5pKCCKE2ajJHZ9KAiaK11H","displayName":"Rihanna","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebcb565a8e684e3be458d329ac","profileUrl":"https://open.spotify.com/artist/5pKCCKE2ajJHZ9KAiaK11H"},{"artistId":"6S0dmVVn4udvppDhZIWxCr","displayName":"Sean Kingston","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebee205e5029a04bd0460e16e4","profileUrl":"https://open.spotify.com/artist/6S0dmVVn4udvppDhZIWxCr"},{"artistId":"04gDigrS5kc9YWfZHwBETP","displayName":"Maroon 5","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebf8349dfb619a7f842242de77","profileUrl":"https://open.spotify.com/artist/04gDigrS5kc9YWfZHwBETP"},{"artistId":"2tIP7SsRs7vjIcLrU85W8J","displayName":"The Kid LAROI","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb8ae6a1046094624d95b115cb","profileUrl":"https://open.spotify.com/artist/2tIP7SsRs7vjIcLrU85W8J"},{"artistId":"6jJ0s89eD6GaHleKKya26X","displayName":"Katy Perry","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb049c9a9ae6f93f81ab517798","profileUrl":"https://open.spotify.com/artist/6jJ0s89eD6GaHleKKya26X"},{"artistId":"1Xyo4u8uXC1ZmMpatF05PJ","displayName":"The Weeknd","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebc1719ac9e6a75c1c25835018","profileUrl":"https://open.spotify.com/artist/1Xyo4u8uXC1ZmMpatF05PJ"},{"artistId":"6VuMaDnrHyPL1p4EHjYLi7","displayName":"Charlie Puth","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb6721f541fb123145d4cb3ace","profileUrl":"https://open.spotify.com/artist/6VuMaDnrHyPL1p4EHjYLi7"},{"artistId":"7n2wHs1TKAczGzO7Dd2rGr","displayName":"Shawn Mendes","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb58b4b9419486550f6fda0535","profileUrl":"https://open.spotify.com/artist/7n2wHs1TKAczGzO7Dd2rGr"},{"artistId":"540vIaP2JwjQb9dm3aArA4","displayName":"DJ Snake","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb175df1a8848d8ff67c6d5600","profileUrl":"https://open.spotify.com/artist/540vIaP2JwjQb9dm3aArA4"},{"artistId":"5CiGnKThu5ctn9pBxv7DGa","displayName":"benny blanco","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb9e339e423b680759b0006a63","profileUrl":"https://open.spotify.com/artist/5CiGnKThu5ctn9pBxv7DGa"},{"artistId":"1Xylc3o4UrD53lo9CvFvVg","displayName":"Zara Larsson","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebd519a7e349541cba8f85e965","profileUrl":"https://open.spotify.com/artist/1Xylc3o4UrD53lo9CvFvVg"},{"artistId":"5ZsFI1h6hIdQRw2ti0hz81","displayName":"ZAYN","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb830845d2fa6c5c7874176951","profileUrl":"https://open.spotify.com/artist/5ZsFI1h6hIdQRw2ti0hz81"},{"artistId":"31TPClRtHm23RisEBtV3X7","displayName":"Justin Timberlake","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb7a5cfe2597665a3d160e805e","profileUrl":"https://open.spotify.com/artist/31TPClRtHm23RisEBtV3X7"},{"artistId":"6eUKZXaKkcviH0Ku9w2n3V","displayName":"Ed Sheeran","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebd55c95ad400aed87da52daec","profileUrl":"https://open.spotify.com/artist/6eUKZXaKkcviH0Ku9w2n3V"},{"artistId":"5ndkK3dpZLKtBklKjxNQwT","displayName":"B.o.B","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb834607348a8574d8f3b7a2ca","profileUrl":"https://open.spotify.com/artist/5ndkK3dpZLKtBklKjxNQwT"},{"artistId":"0C8ZW7ezQVs4URX5aX7Kqx","displayName":"Selena Gomez","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb815e520e3ce7fe210046ba66","profileUrl":"https://open.spotify.com/artist/0C8ZW7ezQVs4URX5aX7Kqx"},{"artistId":"4AK6F7OLvEQ5QYCBNiQWHq","displayName":"One Direction","avatarUrl":"https://i.scdn.co/image/5bb443424a1ad71603c43d67f5af1a04da6bb3c8","profileUrl":"https://open.spotify.com/artist/4AK6F7OLvEQ5QYCBNiQWHq"},{"artistId":"21E3waRsmPlU7jZsS13rcj","displayName":"Ne-Yo","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebca118e3822061f7b7f6bc537","profileUrl":"https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj"}],"discographySummary":{"albumCount":10,"singleCount":10,"compilationCount":0}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","artist":null,"metrics":null,"relatedArtists":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/spotify/album":{"get":{"tags":["Spotify"],"summary":"Get Spotify album","description":"Get a Spotify album by id or album 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":128,"description":"Optional Spotify album id for the request."},"required":false,"description":"Optional Spotify album id for the request.","name":"albumId","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Optional Spotify album URL for the request."},"required":false,"description":"Optional Spotify album URL for the request.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 album was found."},"album":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["spotify"],"description":"Platform for this album."},"albumId":{"type":"string","minLength":1,"description":"Stable Spotify album identifier."},"title":{"type":"string","minLength":1,"description":"Album title."},"albumType":{"type":"string","enum":["album","single","compilation","ep","unknown"],"description":"Release type (album, single, compilation, etc.)."},"label":{"type":"string","nullable":true,"description":"Record label when available."},"releaseDate":{"type":"string","minLength":1,"description":"Release date as an ISO 8601 string when available."},"releaseDatePrecision":{"type":"string","enum":["day","month","year"],"description":"Precision of the release date when available."},"coverArtUrl":{"type":"string","nullable":true,"description":"Best available square cover image URL when available."},"albumUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify album URL."},"playable":{"type":"boolean","description":"Whether the album is playable on Spotify."},"isPreRelease":{"type":"boolean","description":"Whether the album is marked as a pre-release."},"copyright":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Copyright notice text."},"type":{"type":"string","minLength":1,"description":"Copyright type code."}},"required":["text","type"],"description":"Copyright line on a Spotify album."},"description":"Copyright lines when available."},"artists":{"type":"array","items":{"type":"object","properties":{"artistId":{"type":"string","minLength":1,"description":"Spotify artist id."},"displayName":{"type":"string","minLength":1,"description":"Artist display name on this album."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify artist profile URL."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL when available."}},"required":["artistId","displayName","profileUrl"],"description":"Artist credited on a Spotify album."},"minItems":1,"description":"Album artists when available."},"trackCount":{"type":"integer","minimum":0,"description":"Number of tracks on the album."},"tracks":{"type":"array","items":{"type":"object","properties":{"trackId":{"type":"string","minLength":1,"description":"Stable Spotify track identifier."},"title":{"type":"string","minLength":1,"description":"Track title."},"trackNumber":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Track number on the disc."},"discNumber":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Disc number for this track."},"durationMs":{"type":"integer","minimum":0,"description":"Track duration in milliseconds."},"explicit":{"type":"boolean","description":"Whether the track is marked explicit."},"playCount":{"type":"integer","minimum":0,"description":"Reported play count when available."},"artists":{"type":"array","items":{"type":"object","properties":{"artistId":{"type":"string","minLength":1,"description":"Spotify artist id for this track."},"displayName":{"type":"string","minLength":1,"description":"Artist display name on this track."}},"required":["artistId","displayName"],"description":"Artist credited on a Spotify album track."},"minItems":1,"description":"Artists credited on this track."}},"required":["trackId","title","trackNumber","discNumber","durationMs","explicit","artists"],"description":"Track on a Spotify album."},"description":"Album tracks in track order."}},"required":["platform","albumId","title","albumType","label","releaseDate","coverArtUrl","albumUrl","playable","copyright","artists","trackCount","tracks"],"description":"Album details when available."}},"required":["lookupStatus","album"],"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","album":{"platform":"spotify","albumId":"0pgrg7phBbnwGJ2HBEl9EG","title":"BEFORE THE SUN RISES & WINTERR ENDS","albumType":"single","label":"IRL Angel","releaseDate":"2025-03-16T00:00:00Z","releaseDatePrecision":"day","coverArtUrl":"https://i.scdn.co/image/ab67616d0000b2739bd93cc6e406b820dfff691f","albumUrl":"https://open.spotify.com/album/0pgrg7phBbnwGJ2HBEl9EG?si=8Gk-vOKsSkKZjmcJMqYWNg","playable":true,"copyright":[{"text":"2025 IRL Angel","type":"C"},{"text":"2025 IRL Angel","type":"P"}],"artists":[{"artistId":"14xRX3JR8H4RWh8R7V3fvZ","displayName":"Miguel Angeles","profileUrl":"https://open.spotify.com/artist/14xRX3JR8H4RWh8R7V3fvZ?si=61lIxRD8RnaCw6JmJPB9pg","avatarUrl":"https://i.scdn.co/image/ab6761610000e5eb9784901e4c2fb5e2e59bf7b2"}],"trackCount":3,"tracks":[{"trackId":"0LfCnR4s7l6T4TyCNNsHBs","title":"AN IMPERRFECT BODY","trackNumber":1,"discNumber":1,"durationMs":184109,"explicit":false,"playCount":131166,"artists":[{"artistId":"14xRX3JR8H4RWh8R7V3fvZ","displayName":"Miguel Angeles"}]},{"trackId":"0QTlqcwzdieh3MNe8vvMsn","title":"NOVEMBERR","trackNumber":2,"discNumber":1,"durationMs":170666,"explicit":true,"playCount":267713,"artists":[{"artistId":"14xRX3JR8H4RWh8R7V3fvZ","displayName":"Miguel Angeles"}]},{"trackId":"3bJBq2NNe7C2b118sDVvAL","title":"2GETHERR","trackNumber":3,"discNumber":1,"durationMs":104347,"explicit":false,"playCount":29923,"artists":[{"artistId":"14xRX3JR8H4RWh8R7V3fvZ","displayName":"Miguel Angeles"},{"artistId":"6MOR8WtiHGBvFm3DmjXzga","displayName":"F3lix"}]}]}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","album":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/spotify/track":{"get":{"tags":["Spotify"],"summary":"Get Spotify track","description":"Get a Spotify track by id or track 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":128,"description":"Optional Spotify track id for the request."},"required":false,"description":"Optional Spotify track id for the request.","name":"trackId","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Optional Spotify track URL for the request."},"required":false,"description":"Optional Spotify track URL for the request.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 track was found."},"track":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["spotify"],"description":"Platform for this track."},"trackId":{"type":"string","minLength":1,"description":"Stable Spotify track identifier."},"title":{"type":"string","minLength":1,"description":"Track title."},"durationMs":{"type":"integer","minimum":0,"description":"Track duration in milliseconds."},"trackNumber":{"type":"integer","minimum":0,"exclusiveMinimum":true,"description":"Track number on the album when available."},"explicit":{"type":"boolean","description":"Whether the track is marked explicit when available."},"playable":{"type":"boolean","description":"Whether the track is playable in the current context."},"playCount":{"type":"integer","minimum":0,"description":"Play count when available."},"mediaType":{"type":"string","minLength":1,"description":"Media type when available."},"previewUrl":{"type":"string","minLength":1,"description":"Short audio preview URL when available."},"trackUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify track URL."}},"required":["platform","trackId","title","durationMs","playable","trackUrl"],"description":"Track details when available."},"album":{"type":"object","nullable":true,"properties":{"albumId":{"type":"string","minLength":1,"description":"Spotify album identifier."},"title":{"type":"string","minLength":1,"description":"Album title."},"albumType":{"type":"string","minLength":1,"description":"Album type when available."},"releaseYear":{"type":"integer","description":"Release year when available."},"releaseDateIso":{"type":"string","minLength":1,"description":"Release date ISO string when available."},"coverArtUrl":{"type":"string","nullable":true,"description":"Best available album cover image URL when available."},"albumUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify album URL when available."},"trackCount":{"type":"integer","minimum":0,"description":"Number of tracks on the album when available."}},"required":["albumId","title"],"description":"Album details when available."},"artists":{"type":"array","items":{"type":"object","properties":{"artistId":{"type":"string","minLength":1,"description":"Spotify artist identifier."},"displayName":{"type":"string","minLength":1,"description":"Artist display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available artist avatar URL when available."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public Spotify artist profile URL when available."}},"required":["artistId","displayName"],"description":"Artist credited on a Spotify track."},"description":"Artists credited on the track (may be empty)."}},"required":["lookupStatus","track","album","artists"],"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","track":{"platform":"spotify","trackId":"1ITJflybJsfarsUtiBvkfK","title":"Shoulda Never (feat. USHER)","durationMs":186112,"trackNumber":8,"explicit":true,"playable":true,"playCount":9025068,"mediaType":"AUDIO","trackUrl":"https://open.spotify.com/track/1ITJflybJsfarsUtiBvkfK?si=3f6njaWoSd2gebBjT6oxLw"},"album":{"albumId":"2xkYTmqjear3lSGydIn7wh","title":"Kehlani","albumType":"ALBUM","releaseYear":2026,"releaseDateIso":"2026-04-24T00:00:00Z","coverArtUrl":"https://i.scdn.co/image/ab67616d0000b273d4ffe3d4cddee37b9fd6ffcd","albumUrl":"https://open.spotify.com/album/2xkYTmqjear3lSGydIn7wh?si=TbunmmSTTeSU1TeyGphIEg","trackCount":17},"artists":[{"artistId":"0cGUm45nv7Z6M6qdXYQGTX","displayName":"Kehlani","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebcf865d7d399a41e1bd036149","profileUrl":"https://open.spotify.com/artist/0cGUm45nv7Z6M6qdXYQGTX"},{"artistId":"23zg3TcAtWQy7J6upgbUnj","displayName":"USHER","avatarUrl":"https://i.scdn.co/image/ab6761610000e5ebb13684907cd609d10d41f0b8","profileUrl":"https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj"}]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","track":null,"album":null,"artists":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/channel":{"get":{"tags":["YouTube"],"summary":"Get YouTube channel","description":"Get details for a YouTube channel.","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":"Optional YouTube channel id for the request."},"required":false,"description":"Optional YouTube channel id for the request.","name":"channelId","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":64,"description":"Optional YouTube channel handle for the request."},"required":false,"description":"Optional YouTube channel handle for the request.","name":"handle","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Optional YouTube channel URL for the request."},"required":false,"description":"Optional YouTube channel URL for the request.","name":"url","in":"query"}],"responses":{"200":{"description":"Lookup 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 channel was found."},"channel":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["youtube"],"description":"Social platform for this channel."},"handle":{"type":"string","description":"YouTube channel handle without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Public display name for the YouTube channel."},"bio":{"type":"string","nullable":true,"description":"Channel description text when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Channel banner image URL when available."},"verified":{"type":"boolean","description":"Whether the channel is marked as verified."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public YouTube channel URL."},"platformUserId":{"type":"string","description":"YouTube channel id (stable identifier for the channel)."},"country":{"type":"string","nullable":true,"description":"Country label when available."},"joinedDateText":{"type":"string","nullable":true,"description":"Human-readable join date text from YouTube when available (not guaranteed to parse to a calendar date)."},"externalLinks":{"type":"array","items":{"type":"string","minLength":1},"description":"Deduplicated outbound links associated with the channel when available."}},"required":["platform","handle","displayName","bio","avatarUrl","bannerUrl","verified","profileUrl"],"description":"Channel details when available."},"metrics":{"type":"object","nullable":true,"properties":{"subscribers":{"type":"integer","nullable":true,"minimum":0,"description":"Subscriber count for the channel when available."},"videos":{"type":"integer","nullable":true,"minimum":0,"description":"Public video count for the channel when available."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"Total view count reported for the channel when available."}},"required":["subscribers","videos","views"],"description":"Channel metrics when available."}},"required":["lookupStatus","channel","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","channel":{"platform":"youtube","handle":"MrBeast","displayName":"MrBeast","bio":"SUBSCRIBE FOR A COOKIE!\nNew MrBeast or MrBeast Gaming video every single Saturday at noon eastern time!\nAccomplishments:\n- Raised $20,000,000 To Plant 20,000,000 Trees\n- Removed 30,000,000 pounds of trash from the ocean\n- Helped 2,000 people walk again\n- Helped 1,000 blind people see\n- Helped 1,000 deaf people hear\n- Built wells in Africa\n- Built and gave away 100 houses\n- Adopted every dog in a shelter (twice)\n- Given millions to charity\n- Started my own snack company Feastables\n- Started my own software company Viewstats\n- Gave away a private island (twice)\n- Gave away 1 million meals\n- I counted to 100k\n- Ran a marathon in the world's largest shoes\n- Survived 50 hours in Antarctica\n- Recreated Squid Game in real life\n- Created the largest competition show with 1000 people (Beast Games)\n- Gave $5,000,000 to one person\nyou get it, I appreciate all of you so much :)\n\nTerms & Conditions of Current Sweepstakes: https://bit.ly/mrbeastbowandarrow","avatarUrl":"https://yt3.googleusercontent.com/nxYrc_1_2f77DoBadyxMTmv7ZpRZapHR5jbuYe7PlPd5cIRJxtNNEYyOC0ZsxaDyJJzXrnJiuDE=s68-c-k-c0x00ffffff-no-rj","bannerUrl":"https://yt3.googleusercontent.com/mHMO_eEMp0dPvh0ADwXhPXNYb_GnjSVsLI8biqF1CpxT8OPl7izhNQsDPD3JHhd5y5Mg9GrP=w2560-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj","verified":true,"profileUrl":"http://www.youtube.com/@MrBeast","platformUserId":"UCX6OQ3DkcsbYNE6H8uQQuVA","country":"United States","joinedDateText":"Joined Feb 19, 2012","externalLinks":["https://facebook.com/mrbeast","https://instagram.com/mrbeast","https://twitter.com/MrBeast"]},"metrics":{"subscribers":486000000,"videos":979,"views":122602383901}},"meta":{"requestId":"req_d407d134-bab9-4ea6-bb12-f85a6a78e078","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","channel":null,"metrics":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/channels/videos":{"get":{"tags":["YouTube"],"summary":"List YouTube channel videos","description":"Get videos published by a specific YouTube channel.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.videos` array can still mean `data.lookupStatus: \"found\"` when the channel resolves but the returned page has no videos.","disambiguation":"Use `data.lookupStatus` to distinguish a resolved empty result from `not_found`."},"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":"Optional YouTube channel id for the request."},"required":false,"description":"Optional YouTube channel id for the request.","name":"channelId","in":"query"},{"schema":{"type":"string","description":"Optional YouTube channel handle for the request."},"required":false,"description":"Optional YouTube channel handle for the request.","name":"handle","in":"query"},{"schema":{"type":"string","enum":["latest","popular"],"description":"Optional sort order for the returned YouTube videos."},"required":false,"description":"Optional sort order for the returned YouTube videos.","name":"sortBy","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":"Optional flag to include richer per-video metadata when available."},"required":false,"description":"Optional flag to include richer per-video metadata when available.","name":"includeExtras","in":"query"}],"responses":{"200":{"description":"YouTube videos for the requested channel. 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 channel was resolved for this request."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube video identifier."},"url":{"type":"string","nullable":true,"description":"Canonical public YouTube URL for the video."},"title":{"type":"string","nullable":true,"description":"Title shown for the YouTube video."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Best available thumbnail image URL for the video."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count for the video when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp for when the video was published, when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time text when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the video in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label for the video when available."},"channelTitle":{"type":"string","nullable":true,"description":"Channel title shown alongside the video when available."},"channelThumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail image URL shown alongside the video when available."},"description":{"type":"string","nullable":true,"description":"Video description text when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count for the video when available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count label when available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count for the video when available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count label when available."},"publishDate":{"type":"string","nullable":true,"description":"Publish date text when available."},"genre":{"type":"string","nullable":true,"description":"Video category or genre label when available."},"durationMs":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the video in milliseconds when available."},"durationFormatted":{"type":"string","nullable":true,"description":"Alternative formatted duration label when available."}},"required":["id","url","title","thumbnailUrl","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","channelTitle","channelThumbnailUrl"],"description":"A single YouTube video in the channel videos feed."},"description":"YouTube videos returned for the resolved channel. This array may be empty when the channel resolves but there are no videos in the returned page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of videos is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["lookupStatus","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":{"found":{"value":{"data":{"lookupStatus":"found","videos":[{"id":"ehPHNMQEO5M","url":"https://www.youtube.com/watch?v=ehPHNMQEO5M","title":"Can HEAT transform your running FITNESS? (Copenhagen Calling Ep.5)","thumbnailUrl":"https://i.ytimg.com/vi/ehPHNMQEO5M/hqdefault.jpg","viewCount":617,"viewCountText":"617 views","publishedAt":"2026-04-12T15:07:20.873Z","publishedTimeText":"6 days ago","durationSeconds":795,"durationText":"13:15","channelTitle":null,"channelThumbnailUrl":null}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","videos":[{"id":"sF5LYGgKbUA","url":"https://www.youtube.com/watch?v=sF5LYGgKbUA","title":"Every Minute One Person Is Eliminated","thumbnailUrl":"https://i.ytimg.com/vi/sF5LYGgKbUA/hqdefault.jpg","viewCount":166182287,"viewCountText":"166,182,287 views","publishedAt":"2025-04-18T15:08:58.344Z","publishedTimeText":"1 year ago","durationSeconds":2086,"durationText":"34:46","channelTitle":null,"channelThumbnailUrl":null}],"page":{"nextCursor":"opaque_next_cursor","hasMore":true}},"meta":{"requestId":"req_01example_page_2","creditsCharged":1,"version":"v1"}}},"no_videos":{"value":{"data":{"lookupStatus":"found","videos":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","videos":[],"page":{"nextCursor":null,"hasMore":false}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/channels/shorts":{"get":{"tags":["YouTube"],"summary":"List YouTube channel Shorts","description":"Get Shorts published by a specific YouTube channel.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.shorts` array can still mean `data.lookupStatus: \"found\"` when the channel resolves but the returned page has no Shorts.","disambiguation":"Use `data.lookupStatus` to distinguish a resolved empty result from `not_found`."},"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":"Optional YouTube channel id for the request."},"required":false,"description":"Optional YouTube channel id for the request.","name":"channelId","in":"query"},{"schema":{"type":"string","description":"Optional YouTube channel handle for the request."},"required":false,"description":"Optional YouTube channel handle for the request.","name":"handle","in":"query"},{"schema":{"type":"string","enum":["latest","popular"],"description":"Optional sort order for the returned YouTube Shorts."},"required":false,"description":"Optional sort order for the returned YouTube Shorts.","name":"sortBy","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":"YouTube Shorts for the requested channel. 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 channel was resolved for this request."},"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube Short identifier."},"url":{"type":"string","nullable":true,"description":"Canonical public YouTube URL for the Short."},"title":{"type":"string","nullable":true,"description":"Title shown for the Short."},"description":{"type":"string","nullable":true,"description":"Short description text when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count for the Short when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count for the Short when available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count label when available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count for the Short when available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count label when available."},"publishDate":{"type":"string","nullable":true,"description":"Publication timestamp label when available."},"genre":{"type":"string","nullable":true,"description":"Category or genre label when available."},"durationMs":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the Short in milliseconds when available."},"durationFormatted":{"type":"string","nullable":true,"description":"Formatted duration label when available."}},"required":["id","url","title","description","viewCount","viewCountText"],"description":"A single YouTube Short in the channel Shorts feed."},"description":"YouTube Shorts returned for the resolved channel. This array may be empty when the channel resolves but there are no Shorts in the returned page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of Shorts is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["lookupStatus","shorts","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","shorts":[{"id":"QAkEMtJpq3c","url":"https://www.youtube.com/watch?v=QAkEMtJpq3c","title":"Hit The Button, Win $1,000","description":"New and current subscribers will receive an entry for a chance to win during the sweepstakes period (May 15, 2026 - June 14, 2026). YouTube account must be set to public and include a valid email address. No purchase necessary. Must be 18+. Full rules at https://bit.ly/MrB_Cash_Giveaway","viewCount":23005541,"viewCountText":"23,005,541","commentCount":35000,"commentCountText":"35K","likeCount":546167,"likeCountText":"546167","publishDate":"2026-05-15T09:00:10-07:00","genre":"Entertainment","durationMs":21000,"durationFormatted":"00:00:21"},{"id":"hCuqh2NU2Yg","url":"https://www.youtube.com/watch?v=hCuqh2NU2Yg","title":"World's Fastest Date","description":null,"viewCount":63740458,"viewCountText":"63,740,458","commentCount":13000,"commentCountText":"13K","likeCount":1540734,"likeCountText":"1540734","publishDate":"2026-05-12T09:00:07-07:00","genre":"Entertainment","durationMs":32000,"durationFormatted":"00:00:32"},{"id":"B9LizOAAoLg","url":"https://www.youtube.com/watch?v=B9LizOAAoLg","title":"I’m Granting Wishes For My Subscribers","description":"Disclaimer: We are contributing cash towards the wish of your choosing. Rules and conditions apply. Please visit https://bit.ly/MrB_Birthday_YT for additional rules and details.","viewCount":272397409,"viewCountText":"272,397,409","commentCount":937000,"commentCountText":"937K","likeCount":2724578,"likeCountText":"2724578","publishDate":"2026-05-07T09:00:00-07:00","genre":"Entertainment","durationMs":16000,"durationFormatted":"00:00:16"},{"id":"rqsRdfdN4uI","url":"https://www.youtube.com/watch?v=rqsRdfdN4uI","title":"Guess The Animal","description":"Filming with these animals was so fun! We had the American Humane Society on set throughout filming to make sure all the animals were safe and cared for. They gave us their official “No Animals Were Harmed®” stamp of approval.","viewCount":164466696,"viewCountText":"164,466,696","commentCount":10000,"commentCountText":"10K","likeCount":2265641,"likeCountText":"2265641","publishDate":"2026-05-05T09:00:02-07:00","genre":"Entertainment","durationMs":46000,"durationFormatted":"00:00:46"},{"id":"feu5PQvoCiA","url":"https://www.youtube.com/watch?v=feu5PQvoCiA","title":"Asking My Fiancée on a Date","description":null,"viewCount":10639838,"viewCountText":"10,639,838","commentCount":10000,"commentCountText":"10K","likeCount":315937,"likeCountText":"315937","publishDate":"2026-05-03T09:00:11-07:00","genre":"Entertainment","durationMs":8000,"durationFormatted":"00:00:08"},{"id":"VEGq2Du_HCw","url":"https://www.youtube.com/watch?v=VEGq2Du_HCw","title":"Subscribe for $10,000","description":"New subscribers will receive an entry for a chance to win by subscribing to the MrBeast YouTube channel between May 1 - May 28, 2026. YouTube account must be set to public and include a valid email address. No purchase necessary. Must be 18+. Full rules at https://bit.ly/mrbeastbowandarrow\n\nSubscribe! We are contributing cash towards the wish of your choosing. Rules and conditions apply. Please visit https://bit.ly/MrB_Birthday_YT for additional rules and details.","viewCount":535118118,"viewCountText":"535,118,118","commentCount":52000,"commentCountText":"52K","likeCount":3275847,"likeCountText":"3275847","publishDate":"2026-05-01T09:00:01-07:00","genre":"Entertainment","durationMs":13000,"durationFormatted":"00:00:13"},{"id":"EdT5Z16Y5WE","url":"https://www.youtube.com/watch?v=EdT5Z16Y5WE","title":"Would Your Dog Pick $10,000 or Steak?","description":null,"viewCount":40530244,"viewCountText":"40,530,244","commentCount":9400,"commentCountText":"9.4K","likeCount":984811,"likeCountText":"984811","publishDate":"2026-04-29T09:00:05-07:00","genre":"Entertainment","durationMs":32000,"durationFormatted":"00:00:32"},{"id":"ScjQAcbA9e4","url":"https://www.youtube.com/watch?v=ScjQAcbA9e4","title":"Important Announcement From The Grocery Store","description":null,"viewCount":14201716,"viewCountText":"14,201,716","commentCount":14000,"commentCountText":"14K","likeCount":466892,"likeCountText":"466892","publishDate":"2026-04-28T09:00:24-07:00","genre":"Entertainment","durationMs":12000,"durationFormatted":"00:00:12"},{"id":"hRBpDdWbUpI","url":"https://www.youtube.com/watch?v=hRBpDdWbUpI","title":"Can My Fiancée Lift Me?","description":null,"viewCount":13720305,"viewCountText":"13,720,305","commentCount":7200,"commentCountText":"7.2K","likeCount":310991,"likeCountText":"310991","publishDate":"2026-04-27T12:01:02-07:00","genre":"Entertainment","durationMs":17000,"durationFormatted":"00:00:17"},{"id":"pzxtGL9kzPs","url":"https://www.youtube.com/watch?v=pzxtGL9kzPs","title":"Try Not To Get Slimed","description":null,"viewCount":80343653,"viewCountText":"80,343,653","commentCount":11000,"commentCountText":"11K","likeCount":999325,"likeCountText":"999325","publishDate":"2026-04-24T09:00:00-07:00","genre":"Entertainment","durationMs":32000,"durationFormatted":"00:00:32"},{"id":"yy-Nt0dRhNI","url":"https://www.youtube.com/watch?v=yy-Nt0dRhNI","title":"Winner Picks Our Honeymoon","description":null,"viewCount":89080374,"viewCountText":"89,080,374","commentCount":15000,"commentCountText":"15K","likeCount":1656549,"likeCountText":"1656549","publishDate":"2026-04-21T09:00:02-07:00","genre":"Entertainment","durationMs":51000,"durationFormatted":"00:00:51"},{"id":"mFWpUx3FiyU","url":"https://www.youtube.com/watch?v=mFWpUx3FiyU","title":"Guess The Animal","description":"American Humane Society monitored the animal action. No animals were harmed® (AH 14171)","viewCount":140713258,"viewCountText":"140,713,258","commentCount":10000,"commentCountText":"10K","likeCount":2097880,"likeCountText":"2097880","publishDate":"2026-04-17T09:00:01-07:00","genre":"Entertainment","durationMs":45000,"durationFormatted":"00:00:45"},{"id":"6W_841xoprg","url":"https://www.youtube.com/watch?v=6W_841xoprg","title":"Can a Window Stop a Wrecking Ball?","description":null,"viewCount":70899820,"viewCountText":"70,899,820","commentCount":10000,"commentCountText":"10K","likeCount":1585076,"likeCountText":"1585076","publishDate":"2026-04-14T09:00:01-07:00","genre":"Entertainment","durationMs":30000,"durationFormatted":"00:00:30"},{"id":"VIJLIo5yT1I","url":"https://www.youtube.com/watch?v=VIJLIo5yT1I","title":"Don’t Eat The Spicy Yoshi Egg","description":null,"viewCount":107567169,"viewCountText":"107,567,169","commentCount":11000,"commentCountText":"11K","likeCount":1882327,"likeCountText":"1882327","publishDate":"2026-04-10T09:00:00-07:00","genre":"Entertainment","durationMs":56000,"durationFormatted":"00:00:56"},{"id":"uNu6XEPTy5g","url":"https://www.youtube.com/watch?v=uNu6XEPTy5g","title":"$1 or Mystery Vial?","description":null,"viewCount":42248375,"viewCountText":"42,248,375","commentCount":13000,"commentCountText":"13K","likeCount":1282333,"likeCountText":"1282333","publishDate":"2026-04-07T09:00:04-07:00","genre":"Entertainment","durationMs":34000,"durationFormatted":"00:00:34"},{"id":"_JUlWtSCNbs","url":"https://www.youtube.com/watch?v=_JUlWtSCNbs","title":"Who's The Strongest Streamer?","description":null,"viewCount":376021841,"viewCountText":"376,021,841","commentCount":16000,"commentCountText":"16K","likeCount":5564393,"likeCountText":"5564393","publishDate":"2026-04-03T09:00:06-07:00","genre":"Entertainment","durationMs":26000,"durationFormatted":"00:00:26"},{"id":"AKC50SZQFN8","url":"https://www.youtube.com/watch?v=AKC50SZQFN8","title":"Spreading Rumors About Streamers","description":null,"viewCount":14748567,"viewCountText":"14,748,567","commentCount":7500,"commentCountText":"7.5K","likeCount":401864,"likeCountText":"401864","publishDate":"2026-04-02T09:00:00-07:00","genre":"Entertainment","durationMs":36000,"durationFormatted":"00:00:36"},{"id":"897gvApD6V4","url":"https://www.youtube.com/watch?v=897gvApD6V4","title":"Will a Zebra Subscribe to me?","description":"American Humane Society monitored the animal action.  No animals were harmed® (AH 14134)","viewCount":624760239,"viewCountText":"624,760,239","commentCount":19000,"commentCountText":"19K","likeCount":2987830,"likeCountText":"2987830","publishDate":"2026-04-01T09:00:01-07:00","genre":"Entertainment","durationMs":8000,"durationFormatted":"00:00:08"},{"id":"Z9NxQdQ8Rpg","url":"https://www.youtube.com/watch?v=Z9NxQdQ8Rpg","title":"Bring Me A Glass Of Water = Win $10,000","description":null,"viewCount":28961475,"viewCountText":"28,961,475","commentCount":13000,"commentCountText":"13K","likeCount":822898,"likeCountText":"822898","publishDate":"2026-03-26T12:00:02-07:00","genre":"Entertainment","durationMs":40000,"durationFormatted":"00:00:40"},{"id":"jCE1Ol3PYDs","url":"https://www.youtube.com/watch?v=jCE1Ol3PYDs","title":"I Hid $1,000,000 In This Vault","description":"Colin was the first to Slack me the correct code, so we flew him out to unlock the $1,000,000 vault. Thanks to Salesforce for making this possible and giving millions a shot at winning!","viewCount":51233497,"viewCountText":"51,233,497","commentCount":16000,"commentCountText":"16K","likeCount":1639221,"likeCountText":"1639221","publishDate":"2026-03-20T09:00:03-07:00","genre":"Entertainment","durationMs":57000,"durationFormatted":"00:00:57"},{"id":"IqL-ZunFfpk","url":"https://www.youtube.com/watch?v=IqL-ZunFfpk","title":"Pop The Balloons, Win $10,000","description":"fyi we made sure to remove all the popped balloons garbage and track down any balloons that flew away to make sure we didn’t litter :)","viewCount":81123623,"viewCountText":"81,123,623","commentCount":12000,"commentCountText":"12K","likeCount":1580299,"likeCountText":"1580299","publishDate":"2026-03-17T09:00:04-07:00","genre":"Entertainment","durationMs":22000,"durationFormatted":"00:00:22"},{"id":"purAsH7pXTQ","url":"https://www.youtube.com/watch?v=purAsH7pXTQ","title":"5 Strangers Split $100,000","description":null,"viewCount":62910311,"viewCountText":"62,910,311","commentCount":19000,"commentCountText":"19K","likeCount":1792263,"likeCountText":"1792263","publishDate":"2026-03-13T09:00:00-07:00","genre":"Entertainment","durationMs":64000,"durationFormatted":"00:01:04"},{"id":"IEuDUhGIJ5c","url":"https://www.youtube.com/watch?v=IEuDUhGIJ5c","title":"My Chocolate Factory Blew Up","description":null,"viewCount":17699796,"viewCountText":"17,699,796","commentCount":19000,"commentCountText":"19K","likeCount":878808,"likeCountText":"878808","publishDate":"2026-03-10T09:00:01-07:00","genre":"Entertainment","durationMs":69000,"durationFormatted":"00:01:09"},{"id":"IcuJ3vO_t3k","url":"https://www.youtube.com/watch?v=IcuJ3vO_t3k","title":"Would You Steal Money From A Stranger?","description":null,"viewCount":76243976,"viewCountText":"76,243,976","commentCount":10000,"commentCountText":"10K","likeCount":1980600,"likeCountText":"1980600","publishDate":"2026-03-06T10:00:01-08:00","genre":"Entertainment","durationMs":27000,"durationFormatted":"00:00:27"},{"id":"c9VS_cgInT4","url":"https://www.youtube.com/watch?v=c9VS_cgInT4","title":"Subscribe, I’ll Double Your Bank Account","description":null,"viewCount":237093551,"viewCountText":"237,093,551","commentCount":22000,"commentCountText":"22K","likeCount":2404817,"likeCountText":"2404817","publishDate":"2026-02-28T12:00:03-08:00","genre":"Entertainment","durationMs":30000,"durationFormatted":"00:00:30"},{"id":"KaUuPNYHFNg","url":"https://www.youtube.com/watch?v=KaUuPNYHFNg","title":"I Built a School in Mexico","description":null,"viewCount":21916639,"viewCountText":"21,916,639","commentCount":14000,"commentCountText":"14K","likeCount":830627,"likeCountText":"830627","publishDate":"2026-02-22T09:00:00-08:00","genre":"Entertainment","durationMs":40000,"durationFormatted":"00:00:40"},{"id":"hjkbqeWQAM8","url":"https://www.youtube.com/watch?v=hjkbqeWQAM8","title":"Every Step You Take, Win $1,000","description":null,"viewCount":103249097,"viewCountText":"103,249,097","commentCount":8800,"commentCountText":"8.8K","likeCount":1488510,"likeCountText":"1488510","publishDate":"2026-02-18T12:00:03-08:00","genre":"Entertainment","durationMs":42000,"durationFormatted":"00:00:42"},{"id":"XbaZ45LVzzM","url":"https://www.youtube.com/watch?v=XbaZ45LVzzM","title":"Surprising My Fiancée With A Chocolate Heart","description":null,"viewCount":91250181,"viewCountText":"91,250,181","commentCount":16000,"commentCountText":"16K","likeCount":2165320,"likeCountText":"2165320","publishDate":"2026-02-12T09:00:01-08:00","genre":"Entertainment","durationMs":37000,"durationFormatted":"00:00:37"},{"id":"gar4U3n-ILY","url":"https://www.youtube.com/watch?v=gar4U3n-ILY","title":"Guess What Age Punched You","description":null,"viewCount":296206534,"viewCountText":"296,206,534","commentCount":29000,"commentCountText":"29K","likeCount":4285985,"likeCountText":"4285985","publishDate":"2026-02-09T09:00:00-08:00","genre":"Entertainment","durationMs":37000,"durationFormatted":"00:00:37"},{"id":"toIeUtplfWQ","url":"https://www.youtube.com/watch?v=toIeUtplfWQ","title":"Is Being Smart or Strong Better?","description":null,"viewCount":131107055,"viewCountText":"131,107,055","commentCount":9100,"commentCountText":"9.1K","likeCount":2446181,"likeCountText":"2446181","publishDate":"2026-02-06T12:00:08-08:00","genre":"People & Blogs","durationMs":39000,"durationFormatted":"00:00:39"},{"id":"_sBRk9ADpK8","url":"https://www.youtube.com/watch?v=_sBRk9ADpK8","title":"Flip a Coin, Win $30,000","description":null,"viewCount":1113537822,"viewCountText":"1,113,537,822","commentCount":38000,"commentCountText":"38K","likeCount":8398505,"likeCountText":"8398505","publishDate":"2026-01-27T09:00:03-08:00","genre":"Entertainment","durationMs":46000,"durationFormatted":"00:00:46"},{"id":"kNLr-cduzuo","url":"https://www.youtube.com/watch?v=kNLr-cduzuo","title":"Wait... Was He Famous?","description":null,"viewCount":154049272,"viewCountText":"154,049,272","commentCount":30000,"commentCountText":"30K","likeCount":3513412,"likeCountText":"3513412","publishDate":"2026-01-25T12:00:01-08:00","genre":"Entertainment","durationMs":13000,"durationFormatted":"00:00:13"},{"id":"wSh8fAFWEWs","url":"https://www.youtube.com/watch?v=wSh8fAFWEWs","title":"Survivor vs Beast Games","description":null,"viewCount":34602355,"viewCountText":"34,602,355","commentCount":14000,"commentCountText":"14K","likeCount":846360,"likeCountText":"846360","publishDate":"2026-01-16T11:00:01-08:00","genre":"Entertainment","durationMs":27000,"durationFormatted":"00:00:27"},{"id":"3GNyw4uaAqU","url":"https://www.youtube.com/watch?v=3GNyw4uaAqU","title":"Subscribe for an iPhone","description":"NO PURCHASE NECESSARY TO ENTER OR WIN. Takes place from 12:00 p.m. ET on January 13, 2026 through 11:59 a.m. ET on February 12, 2026.  See Official Rules at https://bit.ly/subthrow for eligibility requirements, individual entry periodsand complete details. Void where prohibited. Sponsor: MrBeastYouTube, LLC.","viewCount":1217141168,"viewCountText":"1,217,141,168","commentCount":177000,"commentCountText":"177K","likeCount":6733281,"likeCountText":"6733281","publishDate":"2026-01-13T11:00:04-08:00","genre":"Entertainment","durationMs":14000,"durationFormatted":"00:00:14"},{"id":"ywIcdSNJolo","url":"https://www.youtube.com/watch?v=ywIcdSNJolo","title":"Pass the Phone","description":null,"viewCount":83913300,"viewCountText":"83,913,300","commentCount":13000,"commentCountText":"13K","likeCount":1851926,"likeCountText":"1851926","publishDate":"2026-01-09T11:00:05-08:00","genre":"Entertainment","durationMs":23000,"durationFormatted":"00:00:23"},{"id":"mktYW177p6U","url":"https://www.youtube.com/watch?v=mktYW177p6U","title":"Guess the Animal","description":null,"viewCount":427258310,"viewCountText":"427,258,310","commentCount":19000,"commentCountText":"19K","likeCount":5573422,"likeCountText":"5573422","publishDate":"2026-01-06T09:00:02-08:00","genre":"Entertainment","durationMs":53000,"durationFormatted":"00:00:53"},{"id":"7aE4EhHXzlA","url":"https://www.youtube.com/watch?v=7aE4EhHXzlA","title":"I Paid Everyone Stuck in Traffic","description":null,"viewCount":98178725,"viewCountText":"98,178,725","commentCount":40000,"commentCountText":"40K","likeCount":2749379,"likeCountText":"2749379","publishDate":"2025-12-26T09:00:05-08:00","genre":"Entertainment","durationMs":27000,"durationFormatted":"00:00:27"},{"id":"IJkB-oapuks","url":"https://www.youtube.com/watch?v=IJkB-oapuks","title":"Giving Away $1,000,000 in Gifts To My Subscribers","description":"NO PURCHASE NECESSARY TO ENTER OR WIN. Takes place from 12/21/25 at 12:00 p.m. ET to 2/1/26 at 11:59 p.m. ET. Open only to new subscribers to the MrBeast YouTube account during the Sweepstakes Period and whose YouTube is set to public and includes a valid email address.  See Official Rules at https://bit.ly/Beast-mas for additional eligibility restrictions and complete details. Odds of winning depend on the number of eligible entries received. Void where prohibited. Sponsor: MrBeastYouTube, LLC, 740 Greenville Blvd., Greenville, NC 27858, USA","viewCount":1219863922,"viewCountText":"1,219,863,922","commentCount":194000,"commentCountText":"194K","likeCount":8494965,"likeCountText":"8494965","publishDate":"2025-12-21T09:00:01-08:00","genre":"Entertainment","durationMs":19000,"durationFormatted":"00:00:19"},{"id":"RB71Z-vVvCc","url":"https://www.youtube.com/watch?v=RB71Z-vVvCc","title":"Find The Real Celebrity, Win $10,000","description":null,"viewCount":215733542,"viewCountText":"215,733,542","commentCount":14000,"commentCountText":"14K","likeCount":4177063,"likeCountText":"4177063","publishDate":"2025-12-19T09:00:02-08:00","genre":"Entertainment","durationMs":33000,"durationFormatted":"00:00:33"},{"id":"fO5FwBcCJBY","url":"https://www.youtube.com/watch?v=fO5FwBcCJBY","title":"Would You Date Him for $10,000?","description":null,"viewCount":153576555,"viewCountText":"153,576,555","commentCount":24000,"commentCountText":"24K","likeCount":3732051,"likeCountText":"3732051","publishDate":"2025-12-12T09:00:03-08:00","genre":"Entertainment","durationMs":32000,"durationFormatted":"00:00:32"},{"id":"U-x6KxH1kB4","url":"https://www.youtube.com/watch?v=U-x6KxH1kB4","title":"How Many People to Pull a Plane?","description":"Thanks to Saudia Airlines for letting us use their plane!","viewCount":45088458,"viewCountText":"45,088,458","commentCount":13000,"commentCountText":"13K","likeCount":924557,"likeCountText":"924557","publishDate":"2025-12-06T11:55:52-08:00","genre":"Entertainment","durationMs":27000,"durationFormatted":"00:00:27"},{"id":"SE9xF1l3ZwE","url":"https://www.youtube.com/watch?v=SE9xF1l3ZwE","title":"Hit The Target, Keep The Prize","description":null,"viewCount":55003789,"viewCountText":"55,003,789","commentCount":10000,"commentCountText":"10K","likeCount":1211298,"likeCountText":"1211298","publishDate":"2025-12-05T09:00:03-08:00","genre":"Entertainment","durationMs":26000,"durationFormatted":"00:00:26"},{"id":"rF00lQ_upzg","url":"https://www.youtube.com/watch?v=rF00lQ_upzg","title":"Whatever You Hold Onto, You Keep","description":null,"viewCount":69634987,"viewCountText":"69,634,987","commentCount":11000,"commentCountText":"11K","likeCount":930447,"likeCountText":"930447","publishDate":"2025-12-02T12:00:01-08:00","genre":"Entertainment","durationMs":26000,"durationFormatted":"00:00:26"},{"id":"uZY9xr-QAk0","url":"https://www.youtube.com/watch?v=uZY9xr-QAk0","title":"Flip a Coin, I’ll Pay For Your College","description":null,"viewCount":308524560,"viewCountText":"308,524,560","commentCount":25000,"commentCountText":"25K","likeCount":5206962,"likeCountText":"5206962","publishDate":"2025-11-28T09:00:01-08:00","genre":"Entertainment","durationMs":33000,"durationFormatted":"00:00:33"},{"id":"AWBsoArakNY","url":"https://www.youtube.com/watch?v=AWBsoArakNY","title":"Who Has The Fastest Reaction Time?","description":null,"viewCount":85140739,"viewCountText":"85,140,739","commentCount":8500,"commentCountText":"8.5K","likeCount":1789019,"likeCountText":"1789019","publishDate":"2025-11-25T09:00:00-08:00","genre":"Entertainment","durationMs":31000,"durationFormatted":"00:00:31"},{"id":"HISfrcjiNPM","url":"https://www.youtube.com/watch?v=HISfrcjiNPM","title":"I Surprised 50 Make-A-Wish Kids With Disneyland","description":null,"viewCount":46416571,"viewCountText":"46,416,571","commentCount":13000,"commentCountText":"13K","likeCount":1051207,"likeCountText":"1051207","publishDate":"2025-11-21T11:40:01-08:00","genre":"Entertainment","durationMs":29000,"durationFormatted":"00:00:29"},{"id":"WROMyJAJmp4","url":"https://www.youtube.com/watch?v=WROMyJAJmp4","title":"Can I Beat An F1 Driver?","description":null,"viewCount":334799301,"viewCountText":"334,799,301","commentCount":12000,"commentCountText":"12K","likeCount":2877759,"likeCountText":"2877759","publishDate":"2025-11-18T09:00:01-08:00","genre":"Entertainment","durationMs":11000,"durationFormatted":"00:00:11"},{"id":"tAwzBYE18Us","url":"https://www.youtube.com/watch?v=tAwzBYE18Us","title":"How I Became MrBeef","description":null,"viewCount":39065163,"viewCountText":"39,065,163","commentCount":18000,"commentCountText":"18K","likeCount":1418273,"likeCountText":"1418273","publishDate":"2025-11-16T12:00:02-08:00","genre":"Entertainment","durationMs":45000,"durationFormatted":"00:00:45"}],"page":{"nextCursor":"4qmFsgLBCxIYVUNYNk9RM0RrY3NiWU5FNkg4dVFRdVZBGqQLOGdheUNCcXZDRktzQ0RLcENBb2tObVE0TXpJek5HRXRNREF3TUMweU9EWTJMV0ZrWTJRdE1UUmpNVFJsWm1NNVlURTRFdjRIUVZOdmNqSmFabTB5Y1hkSlYwcGFZbmxHTFhrNU9XUmpiWGhaTkhsVGFIaHNVVzl2Wm1FME1ta3labU5pZFVaUlUxbEJjMVZTWjJSWU1YRnJSbEpHTkcwNVRXSmhUalEzWW5NdGNuTkJZa0ZFV21STlJYaFBaRFZQZWxoR01GUmpRa1Z1WnpreU4wWXdWelJvY1U0eVowZzBkSHBMUmtWRWRuQk9aR2xqU25SaGVXd3lkV0k0UTBrMWVWUlJZbUZYYWs1RlVVRTRRa1UyTW0xc1RURktaMmN4UmxaSlZUVmlNMVJKZDNCVGFscE5lVVU0U0ZOSWEzcFFWRkJuTW5OMU9WQlJXbmRGYzB0VFMzaDVOR1pUZUhWUmNWVTJkRXhsWjJGNmIwUndha0l5UzBseFMyMHhZMVpDTFhCalFXUjZkMVpKTjBNNFpEY3liMGN3ZG5WdU5XZDFkV2hyYmxBNVRucGhNM0puYURCTFp6TmxNVEpIYUZCR05HMHlNRjlEYUVkRWJVY3dkakZmVlc5Uk4wUTRhMGRaYlhwQ1RUVnhZbXBrZDJGdFVrMVpPWFJPTlU1MlZUUjJaVGxJV1RaNVdVRjZXR3BpWTBOMGQwSlhaRVJUZGpscmFtZHhlR3hrVmxCUlZqaGFUa1pIT0dwRGExRnFUamhqT1doMVNHVkdjbFF4VlRaZmMxQlZlWFZ3YmtZdFh6SjVjVTVxTVhnek1VdzNVVVp3VEdSS09VcFZZa1JKVkhweFoxTnBUazVZZFVaS1dVNDRTRWRJTTB0SVRGVXlRV0ZsVUZCbWJHNVJiR3BCT0cxemJ6WXlVR0l5Y0ZoRllXOXZkV3RVYjBGTFlUVkZTMHRwVjFZeldtRnpXVFZSY1RkSlV6TXhRMDlYUWxKb2JEZFNNbEZ5VjI1MlRFeGlaRnBwWDFCVU9HUTVTRlZsVEZFMmFuVTVPRU5ZVm5WSmVHaHVOalppV2kxb2JuWXpTVkZ4VFhSQ1ExZHVZMEV3TTNKTFMyWlhhSGh0VVhnd01EZDNhbXMxYkRGSlprMVhja3BZZEdsNWQyRkdTekZpV1Y5dVEzWTJjRlJpWkZwbGNTMVRTekp3YTBkbVdtTmFUVGhFY0ZOck5Xa3lTVFJ1VG0xUmJFVmpjM05SWmpKV2QyZEJjSEF0UjJaall5MWZRemxtZWpndFpYWktORGhETjNoM1UyRlVUVTFUZUhOQmJFTkpibE0yUldOdFZUWjNRamhOVlZWS1ZrZzFXRk5MVXkxaWJGOHdRbDlNYjIwMWIxVmpWVTVZUzJ0dk9WTkRTVXhPY1ZaeFVVNTVOMnMwUVVOQk1HdDNMVFJOWW5SQlRWTXhkR1F5Wms1SVdYWTBRVk4xZFVOeFJXMUpjblpETWtZM2N6RmpUWGhvWTFGWGVuVXRZaTFwVlhwSVNUWmlaaTF6Vm1OR2RsZDRVR05DZUdJMFMyaE1Oa3d0VEZWWFVHaElSMUZOWHpKR1FWWjVaV1EzU2pCeVpsVjVlamd6U2sxU2ExZExUazlsVVZseVVWZDJUVmxCWkV4bFQwZ3dTMVpoT1dKbVZ6RkxObVpPV0Roc1gyTmZaMkZRV2pJeFZpMVpOblEwWjBOelNUUjJRbTFNWlhKU2RVdzJVWEJxUnkxNVRXMDRhbVI0V1dVeFMyZEVhRlV3Y21ZM1VHTTVWMkU1TVhOSVgwY3lRWEo1V1Mxc05WSTJWbEpoVlhOMU1rOXlkMjFGZWpGTE1sRk5WMU5aY2xRMFp5MVhNV1ZwVVZScVNqZzJTVEpLVVZreFJqUjZUbUZFVFd0VlYxRVlCQSUzRCUzRA%3D%3D","hasMore":true}},"meta":{"requestId":"req_219b06bb-f74d-4916-afa3-0ee5fe299874","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"lookupStatus":"found","shorts":[{"id":"NfhuGUyWYfQ","url":"https://www.youtube.com/watch?v=NfhuGUyWYfQ","title":"Would Your Grandma Go Skydiving?","description":null,"viewCount":93855107,"viewCountText":"93,855,107","commentCount":9100,"commentCountText":"9.1K","likeCount":2544417,"likeCountText":"2544417","publishDate":"2025-09-26T11:00:07-07:00","genre":"Entertainment","durationMs":42000,"durationFormatted":"00:00:42"}],"page":{"nextCursor":"opaque_second_page_cursor","hasMore":true}},"meta":{"requestId":"req_01example_page_2","creditsCharged":1,"version":"v1"}}},"no_shorts":{"value":{"data":{"lookupStatus":"found","shorts":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","shorts":[],"page":{"nextCursor":null,"hasMore":false}},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/shorts/trending":{"get":{"tags":["YouTube"],"summary":"List trending YouTube Shorts (~48 per call)","description":"Discover currently trending YouTube Shorts.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.shorts` array means no trending Shorts were available for that call (you normally receive about 48 when the feed is populated).","disambiguation":"Typically returns about 48 trending Shorts per call. Repeat the same request for another fresh batch (new and overlapping Shorts 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.","responses":{"200":{"description":"Trending YouTube Shorts for this request (typically about 48; see `data.totalResults`).","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube Short identifier."},"url":{"type":"string","nullable":true,"description":"Canonical public YouTube URL for the Short."},"title":{"type":"string","nullable":true,"description":"Title shown for the Short."},"description":{"type":"string","nullable":true,"description":"Description text when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count label when available."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publication timestamp when available."},"publishedDateText":{"type":"string","nullable":true,"description":"Human-readable publication date label when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"url":{"type":"string","nullable":true,"description":"Channel URL when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."}},"required":["id","url","handle","title"],"description":"Channel metadata when available."},"keywords":{"type":"array","items":{"type":"string"},"description":"Keyword tags associated with the Short when available."},"durationMs":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the Short in milliseconds when available."},"durationText":{"type":"string","nullable":true,"description":"Formatted duration label when available."}},"required":["id","url","title","description","thumbnailUrl","viewCount","viewCountText","likeCount","likeCountText","commentCount","commentCountText","publishedAt","publishedDateText","channel","keywords","durationMs","durationText"],"description":"A trending YouTube Short."},"description":"Trending YouTube Shorts for this request—typically about 48 items. Call the endpoint again for another fresh batch that may include Shorts not returned earlier."},"totalResults":{"type":"integer","minimum":0,"description":"Number of Shorts in `data.shorts` for this response (typically about 48 when the feed is available)."}},"required":["shorts","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."},"example":{"data":{"shorts":[{"id":"U6mIjhN8GQo","url":"https://www.youtube.com/watch?v=U6mIjhN8GQo","title":"Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers","description":null,"thumbnailUrl":"https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg","viewCount":18576665,"viewCountText":"18,576,665","likeCount":647486,"likeCountText":"647486","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-04-09T01:47:21-07:00","publishedDateText":"Apr 9, 2026","channel":{"id":"UCdQzLnPnnnqDbgJIwx_M1Sw","url":"https://www.youtube.com/@adnanvlog-p8b","handle":"adnanvlog-p8b","title":"Adnan vlog"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"GBkahsyA-LY","url":"https://www.youtube.com/watch?v=GBkahsyA-LY","title":"Mango cheesecake 🥭","description":null,"thumbnailUrl":"https://img.youtube.com/vi/GBkahsyA-LY/maxresdefault.jpg","viewCount":16790092,"viewCountText":"16,790,092","likeCount":281436,"likeCountText":"281436","commentCount":1400,"commentCountText":"1.4K","publishedAt":"2026-05-11T13:55:23-07:00","publishedDateText":"May 11, 2026","channel":{"id":"UCKNskoTLxHY7EYjMNlYa3kQ","url":"https://www.youtube.com/@surthycooks","handle":"surthycooks","title":"surthany hejeij"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"V-3FSqzBF1Y","url":"https://www.youtube.com/watch?v=V-3FSqzBF1Y","title":"How to Patch a Knot with a Square Plug #shorts #woodworking #diy","description":"節の補修にはさまざまな方法がありますが、今回は四角い埋木を当てる方法を試してみました！\n動画を見て「この方法で本当に上手く埋まるの？」と思われる方もいるかもしれませんが、実は埋木はわずかにテーパー状にカットしてあり、打ち込むことで隙間のない仕上がりになります👍\n\nただ、いちばん難しいのは“木目を合わせること”ですね。\n使用した鑿、鋸はこちら↓\n‪@TempleToolCo‬ \n\n毎日ショート動画を投稿しています！\n高評価＆チャンネル登録よろしくお願いします🙇","thumbnailUrl":"https://img.youtube.com/vi/V-3FSqzBF1Y/maxresdefault.jpg","viewCount":156059379,"viewCountText":"156,059,379","likeCount":2082345,"likeCountText":"2082345","commentCount":9800,"commentCountText":"9.8K","publishedAt":"2025-12-02T03:19:55-08:00","publishedDateText":"Dec 2, 2025","channel":{"id":"UC9bZy627A--NKLGtf9LnAJA","url":"https://youtube.com/@twcdesign","handle":"twcdesign","title":"TWCDesign"},"keywords":["木工","woodworking","diy","asmr","治具","jig","wood","joint"],"durationMs":62000,"durationText":"00:01:02"},{"id":"yVJCVW4DcB8","url":"https://www.youtube.com/watch?v=yVJCVW4DcB8","title":"#pov #herramientas #sketch #gracioso #actuación #historia","description":null,"thumbnailUrl":"https://img.youtube.com/vi/yVJCVW4DcB8/maxresdefault.jpg","viewCount":36058988,"viewCountText":"36,058,988","likeCount":216265,"likeCountText":"216265","commentCount":286,"commentCountText":"286","publishedAt":"2026-04-13T02:47:01-07:00","publishedDateText":"Apr 13, 2026","channel":{"id":"UC0mbaobtmSX-dh-kTpx1GIw","url":"https://www.youtube.com/@HirkoMartinel","handle":"HirkoMartinel","title":"Hirko Martinel"},"keywords":[],"durationMs":19000,"durationText":"00:00:19"},{"id":"d_sNTyrdtds","url":"https://www.youtube.com/watch?v=d_sNTyrdtds","title":"Useless Son-in-Law He’s a One-Man Army #shorts #movie","description":"Movie:  Bad Boys\nEditing program: After Effects 2024\n\n#shorts #edit #movie \n\nAll rights reserved\nAll videos, songs, pictures and charts used in the video are the property of their respective owners. Neither I nor this channel asserts any rights for them.\n\nCopyright Disclaimer: According to Article 107 of the Copyright Act of 1976, fair use is permitted for purposes such as news reporting, teaching, academic and research. Fair use refers to the use permitted by copyright law; otherwise, it may constitute infringement. Non-educational or personal use will tip the balance of fair use in favor of fair use. -- -- -- -- -- -- -- -- -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - thanks for watching... !!!!! ❤ ️!","thumbnailUrl":"https://img.youtube.com/vi/d_sNTyrdtds/maxresdefault.jpg","viewCount":8311468,"viewCountText":"8,311,468","likeCount":456756,"likeCountText":"456756","commentCount":3100,"commentCountText":"3.1K","publishedAt":"2026-05-14T07:01:05-07:00","publishedDateText":"May 14, 2026","channel":{"id":"UCEYPth-uCtCs7uGqVKUk7aw","url":"https://www.youtube.com/@sir7076","handle":"sir7076","title":"酱sir电影局"},"keywords":["#shorts","#movie","#edit"],"durationMs":164000,"durationText":"00:02:44"},{"id":"0v1zKYx5PaM","url":"https://www.youtube.com/watch?v=0v1zKYx5PaM","title":"هاد الفيديو تمثيلي وكوميدي بالكامل معمول بس لضحك والمتعة وخليكن آمنين وما تجربوا هالشي بالحقيقة 😍","description":null,"thumbnailUrl":"https://img.youtube.com/vi/0v1zKYx5PaM/maxresdefault.jpg","viewCount":668143,"viewCountText":"668,143","likeCount":4635,"likeCountText":"4635","commentCount":75,"commentCountText":"75","publishedAt":"2026-05-15T06:14:21-07:00","publishedDateText":"May 15, 2026","channel":{"id":"UCjwov-qRuC724_FnyF4l-cQ","url":"https://www.youtube.com/@Dirtbike_cross","handle":"Dirtbike_cross","title":"زعران الصان صباب"},"keywords":[],"durationMs":43000,"durationText":"00:00:43"},{"id":"HF07zRJ29L4","url":"https://www.youtube.com/watch?v=HF07zRJ29L4","title":"Donald Duck Bike 🦆","description":null,"thumbnailUrl":"https://img.youtube.com/vi/HF07zRJ29L4/maxresdefault.jpg","viewCount":113804,"viewCountText":"113,804","likeCount":1259,"likeCountText":"1259","commentCount":6,"commentCountText":"6","publishedAt":"2026-05-14T22:00:25-07:00","publishedDateText":"May 14, 2026","channel":{"id":"UCBkIDU5t-Tdae21gsppInlQ","url":"https://www.youtube.com/@PawnEssence","handle":"PawnEssence","title":"Pawn Essence"},"keywords":["pawn stars","pawn stars clips","pawn shop","history channel","rick harrison","chumlee","corey harrison","best of pawn stars","pawn stars moments","rare collectibles","pawn stars episodes","antique appraisal","historical items","old coins","rare weapons","vintage finds","expert review","big profit","shocking offer","unexpected deals","crazy customers","top 10 deals","rare discovery","most expensive","unbelievable","deal or no deal","insane value","pawn stars season 20","pawn stars experts","scammer"],"durationMs":56000,"durationText":"00:00:56"},{"id":"n4jenluE4rk","url":"https://www.youtube.com/watch?v=n4jenluE4rk","title":"Part 17 - What is this called? Ft. Corporate office #corporatememes #officelife #officememes #comedy","description":null,"thumbnailUrl":"https://img.youtube.com/vi/n4jenluE4rk/maxresdefault.jpg","viewCount":1915796,"viewCountText":"1,915,796","likeCount":15606,"likeCountText":"15606","commentCount":85,"commentCountText":"85","publishedAt":"2026-04-10T05:39:13-07:00","publishedDateText":"Apr 10, 2026","channel":{"id":"UCAKBAy9FSkdJ8V_a8LW9Htw","url":"https://www.youtube.com/@sahil_the9to5","handle":"sahil_the9to5","title":"Sahil Gupta Corporate"},"keywords":[],"durationMs":25000,"durationText":"00:00:25"},{"id":"2FtCoDF19as","url":"https://www.youtube.com/watch?v=2FtCoDF19as","title":"People after gas prices go up 💀#gasprices #funny #cars #viral #fyp #relatable #lol #gas","description":null,"thumbnailUrl":"https://img.youtube.com/vi/2FtCoDF19as/maxresdefault.jpg","viewCount":5517,"viewCountText":"5,517","likeCount":479,"likeCountText":"479","commentCount":12,"commentCountText":"12","publishedAt":"2026-05-18T18:48:50-07:00","publishedDateText":"May 18, 2026","channel":{"id":"UCCEITaIExjQnCEEs8vt3MJw","url":"https://www.youtube.com/@PetTalesDaily6","handle":"PetTalesDaily6","title":"FunVibe"},"keywords":[],"durationMs":71000,"durationText":"00:01:11"},{"id":"3_8Dd75mWHM","url":"https://www.youtube.com/watch?v=3_8Dd75mWHM","title":"Under Wool #sheep #shearing #wool","description":null,"thumbnailUrl":"https://img.youtube.com/vi/3_8Dd75mWHM/maxresdefault.jpg","viewCount":18989068,"viewCountText":"18,989,068","likeCount":406416,"likeCountText":"406416","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-05-08T03:46:48-07:00","publishedDateText":"May 8, 2026","channel":{"id":"UCTaoFdNdSSgyd1qYwF9z67g","url":"https://www.youtube.com/@Snugbarn","handle":"Snugbarn","title":"Snugbarn"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"U6mIjhN8GQo","url":"https://www.youtube.com/watch?v=U6mIjhN8GQo","title":"Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers","description":null,"thumbnailUrl":"https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg","viewCount":18576665,"viewCountText":"18,576,665","likeCount":647486,"likeCountText":"647486","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-04-09T01:47:21-07:00","publishedDateText":"Apr 9, 2026","channel":{"id":"UCdQzLnPnnnqDbgJIwx_M1Sw","url":"https://www.youtube.com/@adnanvlog-p8b","handle":"adnanvlog-p8b","title":"Adnan vlog"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"KRxH9kw51Dw","url":"https://www.youtube.com/watch?v=KRxH9kw51Dw","title":"Karen Meets Crazy Driver #shorts","description":"Karen thought she’d seen it all… until this driver showed up 😳 #shorts","thumbnailUrl":"https://img.youtube.com/vi/KRxH9kw51Dw/maxresdefault.jpg","viewCount":11392705,"viewCountText":"11,392,705","likeCount":107777,"likeCountText":"107777","commentCount":3000,"commentCountText":"3K","publishedAt":"2026-05-14T05:55:33-07:00","publishedDateText":"May 14, 2026","channel":{"id":"UCPJOWJGSd0rkksmR7SeEr5g","url":"https://www.youtube.com/@KarmaOnCamera","handle":"KarmaOnCamera","title":"KarmaOnCamera"},"keywords":[],"durationMs":26000,"durationText":"00:00:26"},{"id":"jcGPJil-Eno","url":"https://www.youtube.com/watch?v=jcGPJil-Eno","title":"Disney’s Healing Paradise-it’s simply wonderful #disney #youtube #disneyland","description":null,"thumbnailUrl":"https://img.youtube.com/vi/jcGPJil-Eno/maxresdefault.jpg","viewCount":75551100,"viewCountText":"75,551,100","likeCount":800641,"likeCountText":"800641","commentCount":1600,"commentCountText":"1.6K","publishedAt":"2026-02-06T17:49:34-08:00","publishedDateText":"Feb 6, 2026","channel":{"id":"UCzHPVir9WTKj0-q9QeSIvZQ","url":"https://www.youtube.com/@happy-funny-m2q","handle":"happy-funny-m2q","title":"Happy Disney"},"keywords":[],"durationMs":57000,"durationText":"00:00:57"},{"id":"wILa1xJMnVI","url":"https://www.youtube.com/watch?v=wILa1xJMnVI","title":"#arknights","description":"Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a No\n\nNo problem!\n\nThe Mercedes CLR GTR is a remarkable racing car\n\ncelebrated for its\n\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\n\nengine, it delivers over 600 horsepower.\n\nX\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\n\nremarkable top speed surpassing 320 km/h.\n\nIncorporating advanced aerodynamic features and\n\ncutting-edge stability technologies, the CLR GTR ensures exceptional stability and control,\n\nparticularly during high-speed maneuvers.\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\n\nof the most exclusive and prestigious racing cars ever produced. s\n\nIts limited production run of just five units adds to its rarity, making it highly\n\nsought after by racing enthusiasts and collectors worldwide.\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram #instagrambusinessgrowth #socialmediamarketingtips\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram #instagrambusinessgrowth #socialmediamarketingtips","thumbnailUrl":"https://img.youtube.com/vi/wILa1xJMnVI/maxresdefault.jpg","viewCount":14186775,"viewCountText":"14,186,775","likeCount":267335,"likeCountText":"267335","commentCount":244,"commentCountText":"244","publishedAt":"2026-04-28T10:10:03-07:00","publishedDateText":"Apr 28, 2026","channel":{"id":"UCLuPexqip75yLacHQ8-AnIg","url":"https://www.youtube.com/@Taimii_Editzz","handle":"Taimii_Editzz","title":"Taimii_Editzz"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"-Y14qVE0cVU","url":"https://www.youtube.com/watch?v=-Y14qVE0cVU","title":"Making Ice Cream Perfectly😍🍨#shorts#satisfying#icecream#foodasia#asianfood#foodshorts#asmrfood","description":null,"thumbnailUrl":"https://img.youtube.com/vi/-Y14qVE0cVU/maxresdefault.jpg","viewCount":18735412,"viewCountText":"18,735,412","likeCount":325195,"likeCountText":"325195","commentCount":354,"commentCountText":"354","publishedAt":"2026-04-26T09:30:00-07:00","publishedDateText":"Apr 26, 2026","channel":{"id":"UC8FEfTLzBaZfa2JCLez709w","url":"https://www.youtube.com/@mr.rollmaker","handle":"mr.rollmaker","title":"Mr Roll Maker"},"keywords":[],"durationMs":88000,"durationText":"00:01:28"},{"id":"HUm4gMdU0PQ","url":"https://www.youtube.com/watch?v=HUm4gMdU0PQ","title":"Cuộc sống gia đình tài xế trên xe tải tuy vất vả nhưng rất hạnh phúc #truckesvlogs #familyvlog","description":null,"thumbnailUrl":"https://img.youtube.com/vi/HUm4gMdU0PQ/maxresdefault.jpg","viewCount":21362554,"viewCountText":"21,362,554","likeCount":195103,"likeCountText":"195103","commentCount":1600,"commentCountText":"1.6K","publishedAt":"2026-04-02T17:21:35-07:00","publishedDateText":"Apr 2, 2026","channel":{"id":"UC_MS3C7g_ZFvNfVak9c_iAw","url":"https://www.youtube.com/@Truckdrivercouple01","handle":"Truckdrivercouple01","title":"Truck Driver Couple 01"},"keywords":[],"durationMs":59000,"durationText":"00:00:59"},{"id":"F0wK4izLJ3M","url":"https://www.youtube.com/watch?v=F0wK4izLJ3M","title":"Gnochis 🍝 🇮🇹","description":null,"thumbnailUrl":"https://img.youtube.com/vi/F0wK4izLJ3M/maxresdefault.jpg","viewCount":140522943,"viewCountText":"140,522,943","likeCount":1920141,"likeCountText":"1920141","commentCount":13000,"commentCountText":"13K","publishedAt":"2026-01-24T11:32:18-08:00","publishedDateText":"Jan 24, 2026","channel":{"id":"UCKNskoTLxHY7EYjMNlYa3kQ","url":"https://www.youtube.com/@surthycooks","handle":"surthycooks","title":"surthany hejeij"},"keywords":[],"durationMs":61000,"durationText":"00:01:01"},{"id":"FUfwzN5tnSI","url":"https://www.youtube.com/watch?v=FUfwzN5tnSI","title":"Referee Is Really Tired Of This Guy..😂","description":"#shorts #football #viral #viralvideo #trending #foryou #fyp #ronaldo #cristianoronaldo #reaction #moments #soccer #funny","thumbnailUrl":"https://img.youtube.com/vi/FUfwzN5tnSI/maxresdefault.jpg","viewCount":59671851,"viewCountText":"59,671,851","likeCount":754741,"likeCountText":"754741","commentCount":1000,"commentCountText":"1K","publishedAt":"2026-04-19T08:31:08-07:00","publishedDateText":"Apr 19, 2026","channel":{"id":"UCf07_zJEZAfr8vPof-2cjTQ","url":"https://www.youtube.com/@Flash_Pass","handle":"Flash_Pass","title":"FlashPass"},"keywords":[],"durationMs":25000,"durationText":"00:00:25"},{"id":"tyIOO2GWfkg","url":"https://www.youtube.com/watch?v=tyIOO2GWfkg","title":"Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)","description":"Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)\n\n#nowyouseeme3 #edits #movie","thumbnailUrl":"https://img.youtube.com/vi/tyIOO2GWfkg/maxresdefault.jpg","viewCount":45300,"viewCountText":"45,300","likeCount":852,"likeCountText":"852","commentCount":9,"commentCountText":"9","publishedAt":"2026-05-18T11:14:37-07:00","publishedDateText":"May 18, 2026","channel":{"id":"UCgmA9uKsOUSifAszc4z-UgQ","url":"https://www.youtube.com/@realMibby","handle":"realMibby","title":"Mibby"},"keywords":["now you see me","movie edit","edit","movie","edits","now you see me 3"],"durationMs":46000,"durationText":"00:00:46"},{"id":"fyKmcVhOaas","url":"https://www.youtube.com/watch?v=fyKmcVhOaas","title":"BMW #اكسبلور_explore #automobile #محركات #انستغرام #اكسبلور #bmw","description":null,"thumbnailUrl":"https://img.youtube.com/vi/fyKmcVhOaas/maxresdefault.jpg","viewCount":12851755,"viewCountText":"12,851,755","likeCount":137829,"likeCountText":"137829","commentCount":608,"commentCountText":"608","publishedAt":"2026-05-05T05:14:10-07:00","publishedDateText":"May 5, 2026","channel":{"id":"UCbNwd_UkDKLkgf4t4Sj5IyQ","url":"https://www.youtube.com/@LordMax0","handle":"LordMax0","title":"Lord Max"},"keywords":[],"durationMs":13000,"durationText":"00:00:13"},{"id":"U6mIjhN8GQo","url":"https://www.youtube.com/watch?v=U6mIjhN8GQo","title":"Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers","description":null,"thumbnailUrl":"https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg","viewCount":18576665,"viewCountText":"18,576,665","likeCount":647486,"likeCountText":"647486","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-04-09T01:47:21-07:00","publishedDateText":"Apr 9, 2026","channel":{"id":"UCdQzLnPnnnqDbgJIwx_M1Sw","url":"https://www.youtube.com/@adnanvlog-p8b","handle":"adnanvlog-p8b","title":"Adnan vlog"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"30rSrICnJcU","url":"https://www.youtube.com/watch?v=30rSrICnJcU","title":"#edit","description":"Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a\nNo\n\nNo problem! \n\nThe Mercedes CLR GTR is a remarkable racing car celebrated for its\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\nengine, it delivers over 600 horsepower.\n🔧\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\nremarkable top speed surpassing 320 km/h. 🥇\n\nIncorporating advanced aerodynamic features and cutting-edge stability\ntechnologies, the CLR GTR ensures exceptional stability and control,\nparticularly during high-speed maneuvers.🌬\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\nof the most exclusive and prestigious racing cars ever produced. 💰\n\nIts limited production run of just five units adds to its rarity, making it highly\nsought after by racing enthusiasts and collectors worldwide. 🌍\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips\n@ntp_ffi\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips by Krishn by","thumbnailUrl":"https://img.youtube.com/vi/30rSrICnJcU/maxresdefault.jpg","viewCount":1661864,"viewCountText":"1,661,864","likeCount":11640,"likeCountText":"11640","commentCount":58,"commentCountText":"58","publishedAt":"2026-05-12T08:31:33-07:00","publishedDateText":"May 12, 2026","channel":{"id":"UCmiloC6Qvp6rAjbi_mbBtnw","url":"https://www.youtube.com/@TROLLZEFX","handle":"TROLLZEFX","title":"TROLLZ EFX"},"keywords":[],"durationMs":12000,"durationText":"00:00:12"},{"id":"pFWlbpYyJKE","url":"https://www.youtube.com/watch?v=pFWlbpYyJKE","title":"Which one is your favorite? 🇺🇸 Follow americantravelarchives for more hidden gems and bucket list","description":"Which one is your favorite? 🇺🇸\n\nFollow americantravelarchives for more hidden gems and bucket list adventures across the US\n\nWe love our country so much! And today being Earth Day makes us remember all the trips we’ve been able to take and the opportunity to explore so many amazing spots!\n\nHere are the spots on this video:\n📍 Hillsborough River State Park, Florida\n📍Great Smoky Mountains, Tennessee\n📍Alys Beach, Florida\n📍Rosemary Beach, Florida\n📍Seaside, Florida\n📍Million Dollar Highway, Colorado\n📍Trail Ridge Road, Colorado\n📍Black Canyon of the Gunnison, Colorado\n📍Bear Lake, Colorado\n📍Maroon Bells, Colorado\n📍Garden of the Gods, Colorado\n📍Delicate Arch, Utah\n📍Bryce Canyon, Utah\n📍Mesa Arch, Utah\n📍Forrest Gump Point, Utah\n📍Moonscape Overlook, Utah\n📍Sequoia National Park, California\n📍Kings Canyon National Park, California\n\nWe can’t wait to explore even more states around the US and share our adventures with y’all!\n\nWhat’s your favorite spot around the US?","thumbnailUrl":"https://img.youtube.com/vi/pFWlbpYyJKE/maxresdefault.jpg","viewCount":735699,"viewCountText":"735,699","likeCount":11437,"likeCountText":"11437","commentCount":1000,"commentCountText":"1K","publishedAt":"2026-04-22T09:11:26-07:00","publishedDateText":"Apr 22, 2026","channel":{"id":"UCfAajplgxRmwk38GYf9f_xA","url":"https://www.youtube.com/@americantravelarchives","handle":"americantravelarchives","title":"American Travel Archives"},"keywords":[],"durationMs":21000,"durationText":"00:00:21"},{"id":"Bk8NC3PvSvk","url":"https://www.youtube.com/watch?v=Bk8NC3PvSvk","title":"#love #baby","description":null,"thumbnailUrl":"https://img.youtube.com/vi/Bk8NC3PvSvk/maxresdefault.jpg","viewCount":19125796,"viewCountText":"19,125,796","likeCount":241613,"likeCountText":"241613","commentCount":1400,"commentCountText":"1.4K","publishedAt":"2026-05-04T05:00:30-07:00","publishedDateText":"May 4, 2026","channel":{"id":"UCGkeED-1X19zJAz0ddXytLg","url":"https://www.youtube.com/@donenskk","handle":"donenskk","title":"donenskk"},"keywords":[],"durationMs":59000,"durationText":"00:00:59"},{"id":"U6mIjhN8GQo","url":"https://www.youtube.com/watch?v=U6mIjhN8GQo","title":"Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers","description":null,"thumbnailUrl":"https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg","viewCount":18576665,"viewCountText":"18,576,665","likeCount":647486,"likeCountText":"647486","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-04-09T01:47:21-07:00","publishedDateText":"Apr 9, 2026","channel":{"id":"UCdQzLnPnnnqDbgJIwx_M1Sw","url":"https://www.youtube.com/@adnanvlog-p8b","handle":"adnanvlog-p8b","title":"Adnan vlog"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"3_8Dd75mWHM","url":"https://www.youtube.com/watch?v=3_8Dd75mWHM","title":"Under Wool #sheep #shearing #wool","description":null,"thumbnailUrl":"https://img.youtube.com/vi/3_8Dd75mWHM/maxresdefault.jpg","viewCount":18989068,"viewCountText":"18,989,068","likeCount":406416,"likeCountText":"406416","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-05-08T03:46:48-07:00","publishedDateText":"May 8, 2026","channel":{"id":"UCTaoFdNdSSgyd1qYwF9z67g","url":"https://www.youtube.com/@Snugbarn","handle":"Snugbarn","title":"Snugbarn"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"8K7kUZrVws8","url":"https://www.youtube.com/watch?v=8K7kUZrVws8","title":"From Backyard Ruin to Brand New Pool Build","description":null,"thumbnailUrl":"https://img.youtube.com/vi/8K7kUZrVws8/maxresdefault.jpg","viewCount":6554169,"viewCountText":"6,554,169","likeCount":124829,"likeCountText":"124829","commentCount":182,"commentCountText":"182","publishedAt":"2026-05-08T02:29:36-07:00","publishedDateText":"May 8, 2026","channel":{"id":"UCZUKsU1Tww6rdX-3TVHrEew","url":"https://www.youtube.com/@BadrRenton","handle":"BadrRenton","title":"Badr Renton"},"keywords":[],"durationMs":62000,"durationText":"00:01:02"},{"id":"_xVSKcdvbSc","url":"https://www.youtube.com/watch?v=_xVSKcdvbSc","title":"Last One Shocked Everyone 😲","description":"Others vs This one, Others vs Last One, Skull Emoji Edit, Skull Edit, Sigma Edit, Troll Face Edits,Troll Face,\n\n\nRelated:-\nWait For Last\nWait For Moment \nMoment Before Cooked \nMoment Before Disaster, \nTroll Face, \nTroll Face Edit,\nTroll,\nMoments Before Disaster,\n\n\n#trollface \n\n\nTags:-\n#unitedstates#unitedkingdom#australia #switzerland#norway#canada#germany #newzealand#denmark#ireland#singapore#netherlands#spain#france#japan  #geography#history#worldwar2#geography#maps#freepalestine#israel#nowary#usa#russia#uk#canada #geography#edit#maps#safevid#ottoman#umayyad#mughal#date#ussr#siwil#china#billgates#romania#japan#sealand#ohio#southkorea#ukraine#ireland#argentina#brazil#saudiarabia#turkey#greece#russia#algeria#indoneisa#usa#uk#norway#denmark#germany#france#continent#army#italy#world#korea#china#afghanistan#syria#jordan#eygpt#canada#niger#army#megustastu#albania#bulgaria#azerbaijan#vietnam#laos#cambodia#angola#poland#tazmania#angola#elsalvador#trollface#edit#countries#leaders#sigma#trending#northkorea#uzbekistan#gana#nato#oman#iraq#usa##conflict#meme#geographyer#ottoman#countryballs#syria#bulgaria#romania#israel#greece#shortsvideo#viralvideo#tiktokvirals#mongolia#japan#hungary#czechia#edits#ukraine#australia#summer#finland#morocco#armenia#israel#palestine#malaysia#iran#ıraq#mongolia#new#keşfet#türkiye#turkey#viralshorts#ww2#ww1#mapping#country#allied#real#middleeast#world#palestine#centralpowers#future#nowar#nazigermany#ussr#reels#shorts#meme#earth#china#japanese#italy#europe#asia#australia#fun#geography#youtube#trend#new#cuba#mexico#philipinnes#cambodia#south#north#austria#hungary#sweet#azerbaijan#edit#music#gigachad#true#animals#naberyoutube#flag#backgraund#commander#army#soldier#now#than#past#helpme#makethe#japanese#hirohito#trending#peace","thumbnailUrl":"https://img.youtube.com/vi/_xVSKcdvbSc/maxresdefault.jpg","viewCount":31452439,"viewCountText":"31,452,439","likeCount":588403,"likeCountText":"588403","commentCount":2900,"commentCountText":"2.9K","publishedAt":"2026-05-10T04:37:20-07:00","publishedDateText":"May 10, 2026","channel":{"id":"UCmBzW2_lWUDDHanmZxx3Hpg","url":"https://www.youtube.com/@Troll.Boss1","handle":"Troll.Boss1","title":"Troll Boss"},"keywords":[],"durationMs":59000,"durationText":"00:00:59"},{"id":"9SMRtWkmTKE","url":"https://www.youtube.com/watch?v=9SMRtWkmTKE","title":"Cat being idiots part 132: Cat teases owner 🤣 #funnycat #funnypet #cutecat #cat #pets #shorts","description":null,"thumbnailUrl":"https://img.youtube.com/vi/9SMRtWkmTKE/maxresdefault.jpg","viewCount":187373,"viewCountText":"187,373","likeCount":3710,"likeCountText":"3710","commentCount":18,"commentCountText":"18","publishedAt":"2026-05-18T03:51:54-07:00","publishedDateText":"May 18, 2026","channel":{"id":"UCL-kXxSnnadCdBVdlQqSWTw","url":"https://www.youtube.com/@RankingCatz","handle":"RankingCatz","title":"Funny Cat"},"keywords":[],"durationMs":26000,"durationText":"00:00:26"},{"id":"jCfu2N4a4BY","url":"https://www.youtube.com/watch?v=jCfu2N4a4BY","title":"Georgina's Real Side ❤️🔥","description":"Georgina Rodríguez and the kids were cycling on a road in Riyadh, Georgina told the kids to go slowly or else walk while holding the cycle, when Mateo’s helmet was loose she said “I’ll tighten your helmet in a sec,” showing her caring side, then Georgina said “we’re going to go feed the kittens” and told the kids to grab the cat food can, later she said “oh, look, this cat is so funny” and Georgina with her kids started feeding the cats Georgina’s Golden Heart\n#football #shorts #cristianoronaldo #ronaldo #georginarodriguez #georgina #respect #imotional #cats  #ronaldofamily #familymoments #viral #fyp #viralvideo","thumbnailUrl":"https://img.youtube.com/vi/jCfu2N4a4BY/maxresdefault.jpg","viewCount":34021517,"viewCountText":"34,021,517","likeCount":525268,"likeCountText":"525268","commentCount":4700,"commentCountText":"4.7K","publishedAt":"2026-05-01T09:03:05-07:00","publishedDateText":"May 1, 2026","channel":{"id":"UCh7V_VQ8uwgPQNvV44mmUkQ","url":"https://www.youtube.com/@ronoxaep","handle":"ronoxaep","title":"Ronox Aep"},"keywords":[],"durationMs":31000,"durationText":"00:00:31"},{"id":"7Xto-pwgCx4","url":"https://www.youtube.com/watch?v=7Xto-pwgCx4","title":"Phillies land All-Star closer Jhoan Duran ahead of MLB trade deadline 👀🔥 #JhoanDuran","description":null,"thumbnailUrl":"https://img.youtube.com/vi/7Xto-pwgCx4/maxresdefault.jpg","viewCount":31341,"viewCountText":"31,341","likeCount":339,"likeCountText":"339","commentCount":null,"commentCountText":null,"publishedAt":"2026-05-06T01:54:15-07:00","publishedDateText":"May 6, 2026","channel":{"id":"UCtZH6z_qrK64gSTiGnk5icw","url":"https://www.youtube.com/@yikkkk-x7i","handle":"yikkkk-x7i","title":"yikkkk"},"keywords":[],"durationMs":51000,"durationText":"00:00:51"},{"id":"LUnlgES_5J4","url":"https://www.youtube.com/watch?v=LUnlgES_5J4","title":"#aestheic","description":"Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a\nNo\n\nNo problem! \n\nThe Mercedes CLR GTR is a remarkable racing car celebrated for its\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\nengine, it delivers over 600 horsepower.\n🔧\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\nremarkable top speed surpassing 320 km/h. 🥇\n\nIncorporating advanced aerodynamic features and cutting-edge stability\ntechnologies, the CLR GTR ensures exceptional stability and control,\nparticularly during high-speed maneuvers.🌬\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\nof the most exclusive and prestigious racing cars ever produced. 💰\n\nIts limited production run of just five units adds to its rarity, making it highly\nsought after by racing enthusiasts and collectors worldwide. 🌍\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips\n@ntp_ffi\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips \nby Krishn by","thumbnailUrl":"https://img.youtube.com/vi/LUnlgES_5J4/maxresdefault.jpg","viewCount":26760321,"viewCountText":"26,760,321","likeCount":167662,"likeCountText":"167662","commentCount":211,"commentCountText":"211","publishedAt":"2026-05-09T08:59:00-07:00","publishedDateText":"May 9, 2026","channel":{"id":"UC7fgiQpYrkU2vyMvRqejENQ","url":"https://www.youtube.com/@ZewerEditz","handle":"ZewerEditz","title":"Zewer Editz"},"keywords":[],"durationMs":11000,"durationText":"00:00:11"},{"id":"WNt6kygwymc","url":"https://www.youtube.com/watch?v=WNt6kygwymc","title":"Throwing challenge no. 9! This one was such a struggle 😅","description":null,"thumbnailUrl":"https://img.youtube.com/vi/WNt6kygwymc/maxresdefault.jpg","viewCount":22348408,"viewCountText":"22,348,408","likeCount":427231,"likeCountText":"427231","commentCount":656,"commentCountText":"656","publishedAt":"2026-04-06T15:41:31-07:00","publishedDateText":"Apr 6, 2026","channel":{"id":"UCbao9ceO35fTaft5C1jfVRw","url":"https://www.youtube.com/@leisaleaf","handle":"leisaleaf","title":"Leisa Leaf"},"keywords":[],"durationMs":87000,"durationText":"00:01:27"},{"id":"PlD70e9ydDA","url":"https://www.youtube.com/watch?v=PlD70e9ydDA","title":"#catmeme","description":null,"thumbnailUrl":"https://img.youtube.com/vi/PlD70e9ydDA/maxresdefault.jpg","viewCount":19225494,"viewCountText":"19,225,494","likeCount":217404,"likeCountText":"217404","commentCount":745,"commentCountText":"745","publishedAt":"2026-04-24T12:33:14-07:00","publishedDateText":"Apr 24, 2026","channel":{"id":"UCYpzvbGKMmxBPE_KcniNiYw","url":"https://www.youtube.com/@JohnsJournals","handle":"JohnsJournals","title":"John's Journals"},"keywords":[],"durationMs":11000,"durationText":"00:00:11"},{"id":"H1xHqGEp48Y","url":"https://www.youtube.com/watch?v=H1xHqGEp48Y","title":"He Gets Paid $300 an Hour to Find What You Can't See","description":null,"thumbnailUrl":"https://img.youtube.com/vi/H1xHqGEp48Y/maxresdefault.jpg","viewCount":10394752,"viewCountText":"10,394,752","likeCount":279948,"likeCountText":"279948","commentCount":875,"commentCountText":"875","publishedAt":"2026-05-07T12:48:02-07:00","publishedDateText":"May 7, 2026","channel":{"id":"UCGPRNbnHZwdMbkpJSEVy3pw","url":"https://www.youtube.com/@Thedailycuri","handle":"Thedailycuri","title":"TheDailyCurio"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"hX8yav9lCXo","url":"https://www.youtube.com/watch?v=hX8yav9lCXo","title":"Chọi đất tuổi thơ | Dirt ball game #shortvideo","description":null,"thumbnailUrl":"https://img.youtube.com/vi/hX8yav9lCXo/maxresdefault.jpg","viewCount":47780956,"viewCountText":"47,780,956","likeCount":194955,"likeCountText":"194955","commentCount":78,"commentCountText":"78","publishedAt":"2026-04-15T05:40:35-07:00","publishedDateText":"Apr 15, 2026","channel":{"id":"UCckLDdqscHMHm-jvZLJG7aw","url":"https://www.youtube.com/@romoi4357","handle":"romoi4357","title":"ROM"},"keywords":[],"durationMs":21000,"durationText":"00:00:21"},{"id":"k5kiUznCXFM","url":"https://www.youtube.com/watch?v=k5kiUznCXFM","title":"Kai Cenat Turned Into MJ After This 💀😂 #kaicenat #shorts","description":"Kai Cenat vs toxic South London girls got so crazy… bro turned into MJ 😭🔥💀 #kaicenat #sidemen #ksi #shorts","thumbnailUrl":"https://img.youtube.com/vi/k5kiUznCXFM/maxresdefault.jpg","viewCount":982231,"viewCountText":"982,231","likeCount":9102,"likeCountText":"9102","commentCount":53,"commentCountText":"53","publishedAt":"2026-05-17T06:46:40-07:00","publishedDateText":"May 17, 2026","channel":{"id":"UCDBAaYApCXjN4ZxaJHVkCwA","url":"https://www.youtube.com/@OnShortzz","handle":"OnShortzz","title":"OnShortz"},"keywords":[],"durationMs":28000,"durationText":"00:00:28"},{"id":"GXkOyC3loo8","url":"https://www.youtube.com/watch?v=GXkOyC3loo8","title":"Sorting Colours Challenge || Village Avengers","description":"Sorting Colours Challenge || Village Avengers\nHello Everyone welcome to Village Avengers. We are here to entertain you through interesting game challenges with Indian Village people. We are inspired by Bhagawan Sri Sathya Sai Baba's sayings i.e. \"Helping hands are better than praying Lips\" We follow that. \nTHANKYOU for watching our videos, Hope you enjoy our challenges\n\nDisclaimer: \nPlease do not upload our videos to Facebook or anywhere else. We will take down those videos and give a strike and we will not remove the strike, so please be careful. Or I will strike your channel without any notice. We respect each other's work. Please stay away from re-uploading our videos.\n\n-Village Avengers","thumbnailUrl":"https://img.youtube.com/vi/GXkOyC3loo8/maxresdefault.jpg","viewCount":1554872,"viewCountText":"1,554,872","likeCount":10169,"likeCountText":"10169","commentCount":16,"commentCountText":"16","publishedAt":"2026-05-12T06:24:12-07:00","publishedDateText":"May 12, 2026","channel":{"id":"UCjrqYkdrvf6MHFOzZQf6HwA","url":"https://www.youtube.com/@TheVillageAvengers","handle":"TheVillageAvengers","title":"Village Avengers"},"keywords":["The Village Avengers","Village Avengers","Avengers","Avengers Village","Funny Games","ladies games","village ladies games","women games","village games","funny village games","indian village games"],"durationMs":141000,"durationText":"00:02:21"},{"id":"UvANVI4bp2o","url":"https://www.youtube.com/watch?v=UvANVI4bp2o","title":"Paying strangers to cook for me in New York ft. ‪@FellowProducts‬  #cookforme #cooking #newyork","description":null,"thumbnailUrl":"https://img.youtube.com/vi/UvANVI4bp2o/maxresdefault.jpg","viewCount":7399733,"viewCountText":"7,399,733","likeCount":205944,"likeCountText":"205944","commentCount":3800,"commentCountText":"3.8K","publishedAt":"2026-05-15T09:05:00-07:00","publishedDateText":"May 15, 2026","channel":{"id":"UCPcfjtEeauin6HIBzDqL5FQ","url":"https://www.youtube.com/@samueldonner1","handle":"samueldonner1","title":"Samuel Donner"},"keywords":[],"durationMs":180000,"durationText":"00:03:00"},{"id":"6O6J8Awgf9g","url":"https://www.youtube.com/watch?v=6O6J8Awgf9g","title":"New washing technic😂#shorts #shortsfeed #greenscreen #funny #viral #trending","description":"New washing technic😂\n#shorts \n#shortsfeed \n#greenscreen \n#funny \n#viral \n#trending","thumbnailUrl":"https://img.youtube.com/vi/6O6J8Awgf9g/maxresdefault.jpg","viewCount":46986083,"viewCountText":"46,986,083","likeCount":143943,"likeCountText":"143943","commentCount":133,"commentCountText":"133","publishedAt":"2026-03-22T19:46:30-07:00","publishedDateText":"Mar 22, 2026","channel":{"id":"UCF1nsIeDCfzdvsfj82nxFIA","url":"https://www.youtube.com/@DeepakSP1206","handle":"DeepakSP1206","title":"DeepakSP Varma"},"keywords":[],"durationMs":23000,"durationText":"00:00:23"},{"id":"U6mIjhN8GQo","url":"https://www.youtube.com/watch?v=U6mIjhN8GQo","title":"Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers","description":null,"thumbnailUrl":"https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg","viewCount":18576665,"viewCountText":"18,576,665","likeCount":647486,"likeCountText":"647486","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-04-09T01:47:21-07:00","publishedDateText":"Apr 9, 2026","channel":{"id":"UCdQzLnPnnnqDbgJIwx_M1Sw","url":"https://www.youtube.com/@adnanvlog-p8b","handle":"adnanvlog-p8b","title":"Adnan vlog"},"keywords":[],"durationMs":60000,"durationText":"00:01:00"},{"id":"WNt6kygwymc","url":"https://www.youtube.com/watch?v=WNt6kygwymc","title":"Throwing challenge no. 9! This one was such a struggle 😅","description":null,"thumbnailUrl":"https://img.youtube.com/vi/WNt6kygwymc/maxresdefault.jpg","viewCount":22348408,"viewCountText":"22,348,408","likeCount":427231,"likeCountText":"427231","commentCount":656,"commentCountText":"656","publishedAt":"2026-04-06T15:41:31-07:00","publishedDateText":"Apr 6, 2026","channel":{"id":"UCbao9ceO35fTaft5C1jfVRw","url":"https://www.youtube.com/@leisaleaf","handle":"leisaleaf","title":"Leisa Leaf"},"keywords":[],"durationMs":87000,"durationText":"00:01:27"},{"id":"tyIOO2GWfkg","url":"https://www.youtube.com/watch?v=tyIOO2GWfkg","title":"Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)","description":"Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)\n\n#nowyouseeme3 #edits #movie","thumbnailUrl":"https://img.youtube.com/vi/tyIOO2GWfkg/maxresdefault.jpg","viewCount":45300,"viewCountText":"45,300","likeCount":852,"likeCountText":"852","commentCount":9,"commentCountText":"9","publishedAt":"2026-05-18T11:14:37-07:00","publishedDateText":"May 18, 2026","channel":{"id":"UCgmA9uKsOUSifAszc4z-UgQ","url":"https://www.youtube.com/@realMibby","handle":"realMibby","title":"Mibby"},"keywords":["now you see me","movie edit","edit","movie","edits","now you see me 3"],"durationMs":46000,"durationText":"00:00:46"},{"id":"jy6HDkcgdq8","url":"https://www.youtube.com/watch?v=jy6HDkcgdq8","title":"Handcrafted Floral Engagement Ring in 18K Gold | Full Making Process","description":null,"thumbnailUrl":"https://img.youtube.com/vi/jy6HDkcgdq8/maxresdefault.jpg","viewCount":16095339,"viewCountText":"16,095,339","likeCount":341521,"likeCountText":"341521","commentCount":1500,"commentCountText":"1.5K","publishedAt":"2026-05-01T01:24:09-07:00","publishedDateText":"May 1, 2026","channel":{"id":"UC1dy_vNJ3pxLlNyfULI97RQ","url":"https://www.youtube.com/@NextLevelSkills-m1g2d","handle":"NextLevelSkills-m1g2d","title":"NextLevelSkills"},"keywords":[],"durationMs":179000,"durationText":"00:02:59"},{"id":"PlD70e9ydDA","url":"https://www.youtube.com/watch?v=PlD70e9ydDA","title":"#catmeme","description":null,"thumbnailUrl":"https://img.youtube.com/vi/PlD70e9ydDA/maxresdefault.jpg","viewCount":19225494,"viewCountText":"19,225,494","likeCount":217404,"likeCountText":"217404","commentCount":745,"commentCountText":"745","publishedAt":"2026-04-24T12:33:14-07:00","publishedDateText":"Apr 24, 2026","channel":{"id":"UCYpzvbGKMmxBPE_KcniNiYw","url":"https://www.youtube.com/@JohnsJournals","handle":"JohnsJournals","title":"John's Journals"},"keywords":[],"durationMs":11000,"durationText":"00:00:11"},{"id":"keuAAAqgcAs","url":"https://www.youtube.com/watch?v=keuAAAqgcAs","title":"It was MUCH bigger than we thought 🫣⚒️💎","description":"In our last video we pulled an epic Adularia Phantom Quartz cluster that was locking this huge piece in the pocket and once we pulled it out, the big one was ready to pop! It was much bigger than we thought, stunning clear Quartz points on a bed of pure white Adularia crystals which is a type of Moonstone in the Feldspar family. This cluster was so much fun to dig and it was so satisfying to see the clay come off while we washed it. \n\n📍Ginjo Pocket, Hamilton Hill Mine, Arkansas, USA ‪@AvantMining‬  ⚒️\n \n#shorts #mining #crystals #quartz #discovery","thumbnailUrl":"https://img.youtube.com/vi/keuAAAqgcAs/maxresdefault.jpg","viewCount":119785401,"viewCountText":"119,785,401","likeCount":1299994,"likeCountText":"1299994","commentCount":8600,"commentCountText":"8.6K","publishedAt":"2026-03-31T08:39:25-07:00","publishedDateText":"Mar 31, 2026","channel":{"id":"UC3_GsBiAvCzRYIcS_qmAE2Q","url":"https://www.youtube.com/@RocksfortheSpirit","handle":"RocksfortheSpirit","title":"Rocks for the Spirit"},"keywords":["Crystals","Minerals","Gemstones","Rare","Interesting","Rocks","Rocks for the Spirit"],"durationMs":53000,"durationText":"00:00:53"},{"id":"F0wK4izLJ3M","url":"https://www.youtube.com/watch?v=F0wK4izLJ3M","title":"Gnochis 🍝 🇮🇹","description":null,"thumbnailUrl":"https://img.youtube.com/vi/F0wK4izLJ3M/maxresdefault.jpg","viewCount":140522943,"viewCountText":"140,522,943","likeCount":1920141,"likeCountText":"1920141","commentCount":13000,"commentCountText":"13K","publishedAt":"2026-01-24T11:32:18-08:00","publishedDateText":"Jan 24, 2026","channel":{"id":"UCKNskoTLxHY7EYjMNlYa3kQ","url":"https://www.youtube.com/@surthycooks","handle":"surthycooks","title":"surthany hejeij"},"keywords":[],"durationMs":61000,"durationText":"00:01:01"},{"id":"lShcK2El6O8","url":"https://www.youtube.com/watch?v=lShcK2El6O8","title":"Nasa VS My Telescope 🔭🤯","description":"Nasa's images VS My Telescope 🔭 \nCompared nasa images with my clips!\n\nCompared images of:\n\nFull Moon \nJupiter planet \nSaturn Planet \nOrion Nebula \n\n‪@Astronightsky-official‬ \n\nWho won? 🏆","thumbnailUrl":"https://img.youtube.com/vi/lShcK2El6O8/maxresdefault.jpg","viewCount":14688640,"viewCountText":"14,688,640","likeCount":208642,"likeCountText":"208642","commentCount":1100,"commentCountText":"1.1K","publishedAt":"2026-05-09T06:28:35-07:00","publishedDateText":"May 9, 2026","channel":{"id":"UCQeqfohH7mOrzbkhIIBH-pw","url":"https://youtube.com/@Astronightsky","handle":"Astronightsky","title":"Astro Nightsky"},"keywords":["Telescope 🔭","Astrophotography","Space 🌌🚀","Nasa","Nasa VS My 60mm Telescope"],"durationMs":25000,"durationText":"00:00:25"}],"totalResults":48},"meta":{"requestId":"req_01youtube_shorts_trending_example","creditsCharged":1,"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/search":{"get":{"tags":["YouTube"],"summary":"Search YouTube","description":"Search YouTube.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.page.hasMore` and `data.page.nextCursor` for pagination rather than inferring completion from bucket sizes 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":512,"description":"Search query text for YouTube content."},"required":true,"description":"Search query text for YouTube content.","name":"query","in":"query"},{"schema":{"type":"string","enum":["today","this_week","this_month","this_year"],"description":"Optional upload date filter for video results."},"required":false,"description":"Optional upload date filter for video results.","name":"uploadDate","in":"query"},{"schema":{"type":"string","enum":["relevance","popular"],"description":"Optional sort order for search results."},"required":false,"description":"Optional sort order for search results.","name":"sortBy","in":"query"},{"schema":{"type":"string","enum":["videos","shorts","channels","playlists"],"description":"Optional content type filter for search results."},"required":false,"description":"Optional content type filter for search results.","name":"type","in":"query"},{"schema":{"type":"string","enum":["under_3_min","between_3_and_20_min","over_20_min"],"description":"Optional duration filter for video results. Applies to videos, not shorts."},"required":false,"description":"Optional duration filter for video results. Applies to videos, not shorts.","name":"duration","in":"query"},{"schema":{"type":"string","minLength":2,"maxLength":2,"description":"Optional two-letter region code for localized search results."},"required":false,"description":"Optional two-letter region 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 richer per-video metadata when available. May increase response time."},"required":false,"description":"When true, returns richer per-video metadata when available. May increase response time.","name":"includeExtras","in":"query"}],"responses":{"200":{"description":"Search results for the requested query.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"query":{"type":"string","description":"Search query string evaluated for this response."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail URL when available."}},"required":["id","title","handle","thumbnailUrl"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available. May be null for some live items."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as New, Live, or 4K when present."},"description":{"type":"string","nullable":true,"description":"Description text when extras are requested and available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when extras are requested and available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count when extras are requested."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when extras are requested and available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count when extras are requested."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream in YouTube search results."},"description":"Matching YouTube videos."},"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail URL when available."}},"required":["id","title","handle","thumbnailUrl"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available. May be null for some live items."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as New, Live, or 4K when present."},"description":{"type":"string","nullable":true,"description":"Description text when extras are requested and available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when extras are requested and available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count when extras are requested."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when extras are requested and available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count when extras are requested."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream in YouTube search results."},"description":"Matching YouTube Shorts."},"channels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube channel identifier."},"name":{"type":"string","nullable":true,"description":"Channel display name."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"description":{"type":"string","nullable":true,"description":"Channel description snippet when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel avatar or banner thumbnail when available."},"subscriberCount":{"type":"integer","nullable":true,"minimum":0,"description":"Subscriber count when available."},"subscriberCountText":{"type":"string","nullable":true,"description":"Human-readable subscriber count when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as Verified when present."}},"required":["id","name","handle","description","thumbnailUrl","subscriberCount","subscriberCountText","badges"],"description":"A YouTube channel in search results."},"description":"Matching YouTube channels."},"playlists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube playlist identifier."},"title":{"type":"string","nullable":true,"description":"Playlist title."},"url":{"type":"string","nullable":true,"description":"Canonical playlist URL when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Playlist thumbnail URL when available."},"videoCount":{"type":"integer","nullable":true,"minimum":0,"description":"Number of videos in the playlist when available."},"videoId":{"type":"string","nullable":true,"description":"Representative video id shown for the playlist when available."},"videoUrl":{"type":"string","nullable":true,"description":"Representative video URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Playlist owner channel id when available."},"title":{"type":"string","nullable":true,"description":"Playlist owner channel title."},"handle":{"type":"string","nullable":true,"description":"Playlist owner handle when available."},"url":{"type":"string","nullable":true,"description":"Playlist owner channel URL when available."}},"required":["id","title","handle","url"],"description":"Playlist owner channel when available."}},"required":["id","title","url","thumbnailUrl","videoCount","videoId","videoUrl","channel"],"description":"A YouTube playlist in search results."},"description":"Matching YouTube playlists."},"shelves":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true,"description":"Shelf type label when available."},"title":{"type":"string","nullable":true,"description":"Shelf title when available."},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail URL when available."}},"required":["id","title","handle","thumbnailUrl"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available. May be null for some live items."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as New, Live, or 4K when present."},"description":{"type":"string","nullable":true,"description":"Description text when extras are requested and available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when extras are requested and available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count when extras are requested."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when extras are requested and available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count when extras are requested."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream in YouTube search results."},"description":"Media items grouped in this shelf."}},"required":["type","title","items"],"description":"A grouped shelf of related media items."},"description":"Grouped shelf rows when returned."},"liveStreams":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube content identifier."},"kind":{"type":"string","enum":["video","short","live"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail URL when available."}},"required":["id","title","handle","thumbnailUrl"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available. May be null for some live items."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as New, Live, or 4K when present."},"description":{"type":"string","nullable":true,"description":"Description text when extras are requested and available."},"likeCount":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when extras are requested and available."},"likeCountText":{"type":"string","nullable":true,"description":"Human-readable like count when extras are requested."},"commentCount":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when extras are requested and available."},"commentCountText":{"type":"string","nullable":true,"description":"Human-readable comment count when extras are requested."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video, short, or live stream in YouTube search results."},"description":"Matching YouTube live streams."},"totalResults":{"type":"integer","minimum":0,"description":"Count of top-level result rows returned in this response across all buckets."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["query","videos","shorts","channels","playlists","shelves","liveStreams","totalResults","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":"running","videos":[{"id":"yln9Wd9TgS8","kind":"video","url":"https://www.youtube.com/watch?v=yln9Wd9TgS8","title":"I’ve Been Running for 7 Years - Here’s What Actually Made Me Faster!","thumbnailUrl":"https://i.ytimg.com/vi/yln9Wd9TgS8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCzOITVi6O_puFCAtr2Oa8km72ueA","channel":{"id":"UC-vlZFFRyWKx-d3LpoAhNfg","title":"Ben Is Running","handle":"BenIsRunning","thumbnailUrl":"https://yt3.ggpht.com/K-mVXkTijLVtW2pVByXP5FuW026wV6bVesxWI8AJfgABAYYpylZqRxp-sfyWEwSBbwMTgpYE=s68-c-k-c0x00ffffff-no-rj"},"viewCount":46871,"viewCountText":"46,871 views","publishedAt":"2026-05-18T04:47:52.217Z","publishedTimeText":"1 day ago","durationSeconds":890,"durationText":"14:50","badges":["New","4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"hM0qOmKZP0g","kind":"video","url":"https://www.youtube.com/watch?v=hM0qOmKZP0g","title":"Kameron Marlowe - Running (Official Music Video)","thumbnailUrl":"https://i.ytimg.com/vi/hM0qOmKZP0g/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAnWIc3OL-WKnTpJY1WBMiT2vCDEQ","channel":{"id":"UCWSqMNoaslymTKNYC4I8Fqg","title":"Kameron Marlowe","handle":"channel/UCWSqMNoaslymTKNYC4I8Fqg","thumbnailUrl":"https://yt3.ggpht.com/aJHXUqJwMKk7AE3_zV4IFcwSQXX7chyk8iFfl0fFtOLw0qcokVK1EDNo5LC8u-OgV3DAi5EPGWQ=s88-c-k-c0x00ffffff-no-rj"},"viewCount":357279,"viewCountText":"357,279 views","publishedAt":"2026-05-08T04:47:52.217Z","publishedTimeText":"11 days ago","durationSeconds":160,"durationText":"2:40","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"_bowCTqEp34","kind":"video","url":"https://www.youtube.com/watch?v=_bowCTqEp34","title":"I Ran Every Day for 30 Days, This is What it Did to My Body","thumbnailUrl":"https://i.ytimg.com/vi/_bowCTqEp34/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBudmCXts7TKOPyNCOavVtLKy5iTw","channel":{"id":"UCEjIjshJ8bvvCkGNk0pkYcA","title":"Jesse James West","handle":"JesseJamesWest","thumbnailUrl":"https://yt3.ggpht.com/ytc/AIdro_kk2Qpy2IZ4iXFV7i0pJaNN7l8m3lYReyFGu-z60UPityOp=s68-c-k-c0x00ffffff-no-rj"},"viewCount":9959530,"viewCountText":"9,959,530 views","publishedAt":"2025-05-19T04:47:52.217Z","publishedTimeText":"1 year ago","durationSeconds":1646,"durationText":"27:26","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"YlLWQvzhGVQ","kind":"video","url":"https://www.youtube.com/watch?v=YlLWQvzhGVQ","title":"The Psychology Of People Who Love Running","thumbnailUrl":"https://i.ytimg.com/vi/YlLWQvzhGVQ/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAi09Jhe_Owd3zvlGhW9-5SKbc_ow","channel":{"id":"UCESCdB5zKn5KAb8dG2Q2zdw","title":"Nicklas Rossner","handle":"NicklasRossnerPT","thumbnailUrl":"https://yt3.ggpht.com/_rHUDggAueTG55Tn04E2Z-F33Ml4FQshqU2rABmPmHgdDCJtLyHqStFCqWgWPBRXsoaQszkT=s68-c-k-c0x00ffffff-no-rj"},"viewCount":279415,"viewCountText":"279,415 views","publishedAt":"2026-02-19T04:47:52.217Z","publishedTimeText":"3 months ago","durationSeconds":856,"durationText":"14:16","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"1Y8aRXArpgM","kind":"video","url":"https://www.youtube.com/watch?v=1Y8aRXArpgM","title":"how running for a YEAR changed my life & body | +20 beginner tips, essentials, fuelling & mindset","thumbnailUrl":"https://i.ytimg.com/vi/1Y8aRXArpgM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBZx2YS1c07sKY956vlKWSPhzi0HA","channel":{"id":"UCpEcZL5B7i6gJYGfqLvMCbg","title":"Linda Sun","handle":"lindasunyt","thumbnailUrl":"https://yt3.ggpht.com/ytc/AIdro_mB6pKvGojQrwfeWx80o4pXgOwQIVDyfLVF5J64HL06KA=s68-c-k-c0x00ffffff-no-rj"},"viewCount":1316969,"viewCountText":"1,316,969 views","publishedAt":"2025-05-19T04:47:52.217Z","publishedTimeText":"1 year ago","durationSeconds":1471,"durationText":"24:31","badges":[],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"0J42_MuTxoU","kind":"video","url":"https://www.youtube.com/watch?v=0J42_MuTxoU","title":"How Running Completely Changes The Human Body","thumbnailUrl":"https://i.ytimg.com/vi/0J42_MuTxoU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBE9jhPnGIj-3AeJoYK-Axov-knzg","channel":{"id":"UCESCdB5zKn5KAb8dG2Q2zdw","title":"Nicklas Rossner","handle":"NicklasRossnerPT","thumbnailUrl":"https://yt3.ggpht.com/_rHUDggAueTG55Tn04E2Z-F33Ml4FQshqU2rABmPmHgdDCJtLyHqStFCqWgWPBRXsoaQszkT=s68-c-k-c0x00ffffff-no-rj"},"viewCount":1563458,"viewCountText":"1,563,458 views","publishedAt":"2025-09-19T04:47:52.217Z","publishedTimeText":"8 months ago","durationSeconds":454,"durationText":"7:34","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"H7ga2jhlaus","kind":"video","url":"https://www.youtube.com/watch?v=H7ga2jhlaus","title":"How Running Rewires Your Brain and Transforms Your Body","thumbnailUrl":"https://i.ytimg.com/vi/H7ga2jhlaus/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDr5nXCT3akiTpfATwUQWAoL5rfmQ","channel":{"id":"UCGQAS6kKc7jpeYj7OKHLoNA","title":"Jay Freddy ⚕️","handle":"JayFriedrichs","thumbnailUrl":"https://yt3.ggpht.com/znqLBw57bPFhzwyLXR0junF8mlwv4pgF2AFiJl9foevdgVLasXiNpU8CsRH8SoiUk9GQJfX0-g=s68-c-k-c0x00ffffff-no-rj"},"viewCount":1043724,"viewCountText":"1,043,724 views","publishedAt":"2025-05-19T04:47:52.217Z","publishedTimeText":"1 year ago","durationSeconds":1377,"durationText":"22:57","badges":[],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"XzYXnLqgS2I","kind":"video","url":"https://www.youtube.com/watch?v=XzYXnLqgS2I","title":"The Most Comfortable Running Shoes for Every Type of Run","thumbnailUrl":"https://i.ytimg.com/vi/XzYXnLqgS2I/hq720_custom_2.jpg?sqp=CMzVr9AG-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCxwyrq0502S5Jpty_9PYLaavw2cg","channel":{"id":"UCZPqG0yh_xPm2AyLjffbDvw","title":"Ben Parkes","handle":"BenParkes","thumbnailUrl":"https://yt3.ggpht.com/ytc/AIdro_mDy4ZoQqcj7DiO_-1z6j2Y6Nu_PvFESGAsJagEM5FdPg=s68-c-k-c0x00ffffff-no-rj"},"viewCount":54023,"viewCountText":"54,023 views","publishedAt":"2026-05-18T04:47:52.217Z","publishedTimeText":"1 day ago","durationSeconds":1267,"durationText":"21:07","badges":["New","4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"CrTJR-SHfsI","kind":"video","url":"https://www.youtube.com/watch?v=CrTJR-SHfsI","title":"Information Society - Running","thumbnailUrl":"https://i.ytimg.com/vi/CrTJR-SHfsI/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCWKX4ueAb4mR_QYE6SDxEMbSuLig","channel":{"id":"UCnSR7_Oq-MdsZxfogsfk-Ug","title":"Tommy Boy","handle":"TommyBoyRecords","thumbnailUrl":"https://yt3.ggpht.com/hoVaJvLBxH5TndCUo--3swrnT-tYkS4gv8EgVae4eCMm_c3oxHTEXbIyCMj0A0B7hDFvT28tCA=s68-c-k-c0x00ffffff-no-rj"},"viewCount":11690560,"viewCountText":"11,690,560 views","publishedAt":"2019-05-19T04:47:52.217Z","publishedTimeText":"7 years ago","durationSeconds":467,"durationText":"7:47","badges":["CC"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null}],"shorts":[],"channels":[],"playlists":[],"shelves":[],"liveStreams":[],"totalResults":9,"page":{"nextCursor":"Es8BEgdydW5uaW5nGsABU0JTQ0FRdDViRzQ1VjJRNVZHZFRPSUlCQzJoTk1IRlBiVXRhVURCbmdnRUxYMkp2ZDBOVWNVVndNelNDQVF0WmJFeFhVWFo2YUVkV1VZSUJDekZaT0dGU1dFRnljR2ROZ2dFTE1FbzBNbDlOZFZSNGIxV0NBUXRJTjJkaE1tcG9iR0YxYzRJQkMxaDZXVmh1VEhGblV6SkpnZ0VMUTNKVVNsSXRVMGhtYzBteUFRWUtCQWdORUFMcUFRUUlBaEFaoAIEGIHg6BgiC3NlYXJjaC1mZWVk","hasMore":true}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"zzzzzzzzzzzzzzzzzzzz_no_match_99999","videos":[],"shorts":[],"channels":[],"playlists":[],"shelves":[],"liveStreams":[],"totalResults":0,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"query":"running","videos":[{"id":"BzSzwqb-OEE","kind":"video","url":"https://www.youtube.com/watch?v=BzSzwqb-OEE","title":"NF - RUNNING (Audio)","thumbnailUrl":"https://i.ytimg.com/vi/BzSzwqb-OEE/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLCasEKav1CLqeSSE2IYDqjGiIMBGw","channel":{"id":"UCoRR6OLuIZ2-5VxtnQIaN2w","title":"NFrealmusic","handle":"channel/UCoRR6OLuIZ2-5VxtnQIaN2w","thumbnailUrl":"https://yt3.ggpht.com/fn5hgnPgI7SS8przRsemtRr-ITzvevKWerxkk9soKwgiK5jcCN0hh2mHiWgmcjUK-Bqo6K2-BUA=s88-c-k-c0x00ffffff-no-rj"},"viewCount":19870726,"viewCountText":"19,870,726 views","publishedAt":"2023-05-19T04:48:25.413Z","publishedTimeText":"3 years ago","durationSeconds":254,"durationText":"4:14","badges":[],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"6l0Qp1GXY7w","kind":"video","url":"https://www.youtube.com/watch?v=6l0Qp1GXY7w","title":"NF - RUNNING (Lyrics)","thumbnailUrl":"https://i.ytimg.com/vi/6l0Qp1GXY7w/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLBWYszI_N1ezpehAw-Tv7BZDz5j8Q","channel":{"id":"UCcJZ-w0N3-Z2jnJ8UgoBclQ","title":"SauceOnly","handle":"SauceOnly","thumbnailUrl":"https://yt3.ggpht.com/dy5MPezFhnDfpaf7loqoSTGAS9LuIo4EOs-ckW9FMGU15KlG7SFtvzFNVEcfH8DCBpHs8Hxe=s68-c-k-c0x00ffffff-no-rj"},"viewCount":2589761,"viewCountText":"2,589,761 views","publishedAt":"2023-05-19T04:48:25.413Z","publishedTimeText":"3 years ago","durationSeconds":254,"durationText":"4:14","badges":[],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"aAg3bwzSuLk","kind":"video","url":"https://www.youtube.com/watch?v=aAg3bwzSuLk","title":"DIGITAL CIRCUS - “The One Who's Running the Show” [Official Music Video]","thumbnailUrl":"https://i.ytimg.com/vi/aAg3bwzSuLk/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLAUeH44XdDW7pnGU7OLXd6cdxR7OA","channel":{"id":"UCn_FAXem2-e3HQvmK-mOH4g","title":"GLITCH","handle":"GLITCH","thumbnailUrl":"https://yt3.ggpht.com/JgzaWBB7n02Ru2TTmcVLCJJNBW1mLnh_f6eJYPOuEShb3PaXmwkqas5zfpA_sVXjYkg_UNmx=s68-c-k-c0x00ffffff-no-rj"},"viewCount":29537030,"viewCountText":"29,537,030 views","publishedAt":"2026-04-19T04:48:25.413Z","publishedTimeText":"1 month ago","durationSeconds":152,"durationText":"2:32","badges":["CC"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"LX-61VykjDc","kind":"video","url":"https://www.youtube.com/watch?v=LX-61VykjDc","title":"BEGINNER RUNNER TO INTERMEDIATE… A Simple Guide To Run Faster & Longer!","thumbnailUrl":"https://i.ytimg.com/vi/LX-61VykjDc/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLCAiBSLjBgVrsId5dl2_NNtzjj-wQ","channel":{"id":"UCZPqG0yh_xPm2AyLjffbDvw","title":"Ben Parkes","handle":"BenParkes","thumbnailUrl":"https://yt3.ggpht.com/ytc/AIdro_mDy4ZoQqcj7DiO_-1z6j2Y6Nu_PvFESGAsJagEM5FdPg=s68-c-k-c0x00ffffff-no-rj"},"viewCount":108469,"viewCountText":"108,469 views","publishedAt":"2026-03-19T04:48:25.413Z","publishedTimeText":"2 months ago","durationSeconds":858,"durationText":"14:18","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"9aLWNixqiMU","kind":"video","url":"https://www.youtube.com/watch?v=9aLWNixqiMU","title":"I Doubled My Run Every Day For 18 Days","thumbnailUrl":"https://i.ytimg.com/vi/9aLWNixqiMU/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLD8ZBQimVYfzAp-ipUq4yjaTgT4vA","channel":{"id":"UCaFUrR3oSxOl5Y9y6tvLTEg","title":"WillNE","handle":"WillNE","thumbnailUrl":"https://yt3.ggpht.com/jHP9KlhlAzuL53nEquudGPcHi7_WDQoBxlkIihP7xGtgRau_XQUfoyWuZAavrIZrHZyAl2m5=s68-c-k-c0x00ffffff-no-rj"},"viewCount":2927119,"viewCountText":"2,927,119 views","publishedAt":"2025-05-19T04:48:25.413Z","publishedTimeText":"1 year ago","durationSeconds":1596,"durationText":"26:36","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"GwKnceMTw9Y","kind":"video","url":"https://www.youtube.com/watch?v=GwKnceMTw9Y","title":"Ultimate Beginner's Guide to Running","thumbnailUrl":"https://i.ytimg.com/vi/GwKnceMTw9Y/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLBIKc5qWwPNLypF5JY3pP2xGbaoFA","channel":{"id":"UCv9ingiPmqKs6ejZV2Pt6Dw","title":"Shervin Shares","handle":"ShervinShares","thumbnailUrl":"https://yt3.ggpht.com/3mDFiUgmrGjz5jjP1JKGldbTxxpG-DM8Na86a2SsLdyFsSQphpfbSNMg40XNuteiQdRmDhJlUw=s68-c-k-c0x00ffffff-no-rj"},"viewCount":659234,"viewCountText":"659,234 views","publishedAt":"2025-05-19T04:48:25.413Z","publishedTimeText":"1 year ago","durationSeconds":1457,"durationText":"24:17","badges":["4K","CC"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"3H2l9Lo-jPk","kind":"video","url":"https://www.youtube.com/watch?v=3H2l9Lo-jPk","title":"No Doubt - Running (Official Music Video)","thumbnailUrl":"https://i.ytimg.com/vi/3H2l9Lo-jPk/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLDe5XI_n3MmO56ZxbvpADl8Np8n2Q","channel":{"id":"UCtJXMyhnbdIQrCSDwAeJlNw","title":"No Doubt","handle":"channel/UCtJXMyhnbdIQrCSDwAeJlNw","thumbnailUrl":"https://yt3.ggpht.com/zpk6mVs_6BzgIGyFVt_skpYAI-KKTzI88xb5C7nZ4iAR2HABNeOGcR_6qQaQtNtHOLqM_gT9Yg=s88-c-k-c0x00ffffff-no-rj"},"viewCount":10478691,"viewCountText":"10,478,691 views","publishedAt":"2010-05-19T04:48:25.413Z","publishedTimeText":"16 years ago","durationSeconds":238,"durationText":"3:58","badges":["CC"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null},{"id":"uzRi7FS6iAY","kind":"video","url":"https://www.youtube.com/watch?v=uzRi7FS6iAY","title":"How To Run Faster For Longer","thumbnailUrl":"https://i.ytimg.com/vi/uzRi7FS6iAY/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLBWcGiQUwgpvj5UPLr6I0BgiVmkfw","channel":{"id":"UCbVEx9qG_hLrb6FrWQJz_Tg","title":"Nick Bare","handle":"nickbarefitness","thumbnailUrl":"https://yt3.ggpht.com/ytc/AIdro_mVx6fQ8UNrMx2sjhQ5JwJyQTCfSXAoznqRdRSZLoxmGqQ=s68-c-k-c0x00ffffff-no-rj"},"viewCount":1923133,"viewCountText":"1,923,133 views","publishedAt":"2024-05-19T04:48:25.413Z","publishedTimeText":"2 years ago","durationSeconds":718,"durationText":"11:58","badges":["4K"],"description":null,"likeCount":null,"likeCountText":null,"commentCount":null,"commentCountText":null}],"shorts":[],"channels":[{"id":"UCnI3TuOg8D3SCRPW8ET4EAg","name":"Total Running Productions","handle":"TotalRunningProductions","description":"Running documentaries, athlete analysis, behind the scenes. All for the love of the run.","thumbnailUrl":"http://yt3.googleusercontent.com/ytc/AIdro_lDT5Wr19q7bcLT8tC2lDwL9LEEQJH48ixg6_QTT8wSMVI=s176-c-k-c0x00ffffff-no-rj-mo","subscriberCount":802000,"subscriberCountText":"802K","badges":["Verified"]}],"playlists":[],"shelves":[],"liveStreams":[],"totalResults":9,"page":{"nextCursor":"EvMBEgdydW5uaW5nGuQBU0NpQ0FRdENlbE42ZDNGaUxVOUZSWUlCQ3pac01GRndNVWRZV1RkM2dnRUxZVUZuTTJKM2VsTjFUR3VDQVF0TVdDMDJNVlo1YTJwRVk0SUJDemxoVEZkT2FYaHhhVTFWZ2dFTE1rcFJielp2TWs1S1ZUU0NBUXRIZDB0dVkyVk5WSGM1V1lJQkdGVkRia2t6VkhWUFp6aEVNMU5EVWxCWE9FVlVORVZCWjRJQkN6TklNbXc1VEc4dGFsQnJnZ0VMZFhwU2FUZEdVelpwUVZteUFRWUtCQWdaRUFQcUFRUUlCQkF5oAIEGIHg6BgiC3NlYXJjaC1mZWVk","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/search/hashtags":{"get":{"tags":["YouTube"],"summary":"Search YouTube by hashtag","description":"Search YouTube by hashtag.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.page.hasMore` and `data.page.nextCursor` for pagination rather than inferring completion from result count alone.","hashtagInput":"Send `hashtag` with or without a leading #; both `funny` and `#funny` are accepted."},"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","enum":["all","shorts"],"description":"Optional content filter."},"required":false,"description":"Optional content filter.","name":"type","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":"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 #."},"type":{"type":"string","enum":["all","shorts"],"description":"Content filter applied for this response."},"results":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube content identifier."},"kind":{"type":"string","enum":["video","short"],"description":"Normalized media kind for this row."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for this item when available."},"title":{"type":"string","nullable":true,"description":"Title shown for this item."},"description":{"type":"string","nullable":true,"description":"Description text when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"channel":{"type":"object","nullable":true,"properties":{"id":{"type":"string","nullable":true,"description":"Channel identifier when available."},"title":{"type":"string","nullable":true,"description":"Channel title when available."},"handle":{"type":"string","nullable":true,"description":"Channel handle when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Channel thumbnail URL when available."}},"required":["id","title","handle","thumbnailUrl"],"description":"Channel metadata when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count label when available."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"badges":{"type":"array","items":{"type":"string"},"description":"Display badges such as New or Live when present."}},"required":["id","kind","url","title","thumbnailUrl","channel","viewCount","viewCountText","publishedAt","publishedTimeText","durationSeconds","durationText","badges"],"description":"A video or Short in YouTube hashtag search results."},"description":"Matching videos and Shorts for the hashtag."},"totalResults":{"type":"integer","minimum":0,"description":"Number of result rows returned in this response."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of results is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["hashtag","type","results","totalResults","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":"funny","type":"all","results":[{"id":"xzNHylpAuew","kind":"video","url":"https://www.youtube.com/watch?v=xzNHylpAuew","title":"genius hose hack #funny #comedy #diy #hack","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/xzNHylpAuew/hq720.jpg?sqp=-oaymwFBCNAFEJQDSFryq4qpAzMIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB8AEB-AHOBYACgAqKAgwIABABGGUgRyg_MA8=&rs=AOn4CLDSZUshPCxwDUJOP32dgxXYdOx5NQ","channel":{"id":"UCXjU2-9sUQBTEOlEbStqTwA","title":"Laura Harwood","handle":"lauralizzy","thumbnailUrl":"https://yt3.ggpht.com/BHwMj3iQLbZssButyBaoxv3Pjye1q7gjh5Rf4zR5bfstWL1cnqEadGjck3yRC5ufFJ7GMd5xIfg=s68-c-k-c0x00ffffff-no-rj"},"viewCount":27966062,"viewCountText":"27,966,062 views","publishedAt":"2024-05-19T06:27:17.490Z","publishedTimeText":"2 years ago","durationSeconds":479,"durationText":"7:59","badges":["4K"]},{"id":"4OmI_cLYTJQ","kind":"video","url":"https://www.youtube.com/watch?v=4OmI_cLYTJQ","title":"A MUST: Cute Baby & Siblings Compilation 2025 - Funny Babies Video || COOL PEACHY🍑","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/4OmI_cLYTJQ/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLCgpGPaXHBCcsuuVjaFJioNBJDw4w","channel":{"id":"UCOTtZqs7-0kLZ6zSxkIF5Gw","title":"CUTE WEE","handle":"coolpeachybaby","thumbnailUrl":"https://yt3.ggpht.com/j39HnCViAM4fw8InpCODOHD1W8D8vgpnj88Tv7SR1E6vAvgDfp0GEo3uz3ilAQqKaEE9lpGiQA=s68-c-k-c0x00ffffff-no-rj"},"viewCount":996219,"viewCountText":"996,219 views","publishedAt":"2025-11-19T06:27:17.490Z","publishedTimeText":"6 months ago","durationSeconds":1838,"durationText":"30:38","badges":[]},{"id":"MTrKS92Dmlc","kind":"video","url":"https://www.youtube.com/watch?v=MTrKS92Dmlc","title":"😂 Baby Thinks He’s the Boss… Parents Can’t Stop Laughing!","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/MTrKS92Dmlc/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLAWNSrjcAR4UdxNaw6P52OIm05GzA","channel":{"id":"UCowfx97JA-gFfweNmFLdh8w","title":"Classic Detective Tales","handle":"MusiqueMotivante-86","thumbnailUrl":"https://yt3.ggpht.com/pWQ5dA6R8Vh6OzRyXuWuBrFMxCrKaoXnjIClTTFrnVoD7qampJiAVer75fsl2jgpEPR2T-oYYQU=s68-c-k-c0x00ffffff-no-rj"},"viewCount":1376739,"viewCountText":"1,376,739 views","publishedAt":"2026-02-19T06:27:17.490Z","publishedTimeText":"3 months ago","durationSeconds":917,"durationText":"15:17","badges":[]},{"id":"Dvos-ka2BYE","kind":"video","url":"https://www.youtube.com/watch?v=Dvos-ka2BYE","title":"Funniest Fun Top New Comedy Video 2025🤣Amazing best of funny video, Episode 236,By Fun Tv 24","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/Dvos-ka2BYE/hq720.jpg?sqp=-oaymwEnCNAFEJQDSFryq4qpAxkIARUAAIhCGAHYAQHiAQoIGBACGAY4AUAB&rs=AOn4CLCCdQYRJ-4ZclFWPABriKOS1wp5LA","channel":{"id":"UCe9lO5FQR2lLNBtzU0Swgvg","title":"Fun Tv 24","handle":"funtvcomedy24","thumbnailUrl":"https://yt3.ggpht.com/31upG5oE34K9BHKc3j1GKK7IHL5ihC6OJZZKcpa1JIps3J0FYNgL4ev_af7gfORy6DO9N6ML=s68-c-k-c0x00ffffff-no-rj"},"viewCount":13230618,"viewCountText":"13,230,618 views","publishedAt":"2025-12-19T06:27:17.490Z","publishedTimeText":"5 months ago","durationSeconds":512,"durationText":"8:32","badges":["4K"]}],"totalResults":4,"page":{"nextCursor":"EnUSCCIjZnVubnkiGmZTQlNDQVF0NGVrNUllV3h3UVhWbGQ0SUJDelJQYlVsZlkweFpWRXBSZ2dFTFRWUnlTMU01TWtSdGJHT0NBUXRFZG05ekxXdGhNa0paUmJJQkJnb0VDQVlRQXVvQkJBZ0NFQmslM0SgAgQYgeDoGCILc2VhcmNoLWZlZWQ%3D","hasMore":true}},"meta":{"requestId":"req_01example_hashtag","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"hashtag":"zzzzzzzzzzzzzzzzzzzz_no_match_99999","type":"all","results":[],"totalResults":0,"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_hashtag_empty","creditsCharged":1,"version":"v1"}}},"paginated":{"value":{"data":{"hashtag":"funny","type":"all","results":[{"id":"iLTxTDelLwE","kind":"video","url":"https://www.youtube.com/watch?v=iLTxTDelLwE","title":"Jun Jun funny video😂😂😂best TikTok compilation 2024#shorts#funny#cocomelon","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/iLTxTDelLwE/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC_RadhZtrZIpwP76inWfHX4tdbXA","channel":{"id":"UCiANwF7TtFb4UJ4awhzBqQg","title":"Jun Jun House","handle":"junjunworld9795","thumbnailUrl":"https://yt3.ggpht.com/DPrRxcRyw384gZ-vHLAC4Cd6gD_BxJY60vUHn1r4TX-MkETRBdu9DMXNeuQz0O7_JERo6Lawsps=s68-c-k-c0x00ffffff-no-rj"},"viewCount":6518893,"viewCountText":"6,518,893 views","publishedAt":"2025-05-19T06:27:53.431Z","publishedTimeText":"1 year ago","durationSeconds":837,"durationText":"13:57","badges":[]},{"id":"P3vCXiPTnpw","kind":"video","url":"https://www.youtube.com/watch?v=P3vCXiPTnpw","title":"Sagawa1gou Sagawa/さがわ Funny TikTok Compilation #1","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/P3vCXiPTnpw/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD6i9w65encpT7icT6U0_FEyWdFGg","channel":{"id":"UCWaOde99oeUVoXbIj3SNu9g","title":"Sagawa /さがわ","handle":"sagawa","thumbnailUrl":"https://yt3.ggpht.com/QlwomwC80pW7jmuvyPzj6qVY1Z8cLKDgph0GKAvjbOSGCmRf6NqJBNuVMbWAFeGfsNssMAn3f0E=s68-c-k-c0x00ffffff-no-rj"},"viewCount":15625303,"viewCountText":"15,625,303 views","publishedAt":"2023-05-19T06:27:53.431Z","publishedTimeText":"3 years ago","durationSeconds":1344,"durationText":"22:24","badges":[]},{"id":"oS7qaNCxU4k","kind":"video","url":"https://www.youtube.com/watch?v=oS7qaNCxU4k","title":"naikutti yatha sayal #dog #funny #viral #doglover #pet #animals #trending #comedy #prank #unexpected","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/oS7qaNCxU4k/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AbYIgAKAD4oCDAgAEAEYRiBIKFkwDw==&rs=AOn4CLC_vT3tJrYjqBv-Kc0MWrpirFFVuA","channel":{"id":"UCOYcnyP9_-tyk5raFTSXONg","title":"Kalakkal Junction","handle":"kalakkaljunction24","thumbnailUrl":"https://yt3.ggpht.com/FPxSs65pzieHtPkjMlksyqHoQ4ftI-Jzh5ioUFXEAxonTqHf9je5mEo6EUdbhgVLzoysssCmIw=s68-c-k-c0x00ffffff-no-rj"},"viewCount":88779,"viewCountText":"88,779 views","publishedAt":"2026-05-19T06:27:53.431Z","publishedTimeText":"2 hours ago","durationSeconds":21,"durationText":"0:21","badges":["New"]},{"id":"oiW1PrCcSFs","kind":"video","url":"https://www.youtube.com/watch?v=oiW1PrCcSFs","title":"Funniest Fun Stupid Boy Top Comedy Video 2026 try not to laugh 😂 Ep 272 By Our Fun Tv","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/oiW1PrCcSFs/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDxhj1aeXspvxtw0GSkQeZXnNEooQ","channel":{"id":"UCMuz3501Iy7n-yPIFi1KldQ","title":"Our Fun Tv","handle":"ourfuntv0","thumbnailUrl":"https://yt3.ggpht.com/ZS8W-Cw0ncLlo5zFHVqPTRIYJvhqRIGXNZwRDYJsHJSHZ8cKvjDywmL-UhVWaxpjCVkfR2CX2XI=s68-c-k-c0x00ffffff-no-rj"},"viewCount":312016,"viewCountText":"312,016 views","publishedAt":"2026-05-17T06:27:53.431Z","publishedTimeText":"2 days ago","durationSeconds":545,"durationText":"9:05","badges":["New"]}],"totalResults":4,"page":{"nextCursor":"EnUSCCIjZnVubnkiGmZTQ2lDQVF0cFRGUjRWRVJsYkV4M1JZSUJDMUF6ZGtOWWFWQlVibkIzZ2dFTGIxTTNjV0ZPUTNoVk5HdUNBUXR2YVZjeFVISkRZMU5HYzdJQkJnb0VDQXdRQS1vQkJBZ0VFREklM0SgAgQYgeDoGCILc2VhcmNoLWZlZWQ%3D","hasMore":true}},"meta":{"requestId":"req_01example_hashtag_paginated","creditsCharged":1,"version":"v1"}}},"shorts":{"value":{"data":{"hashtag":"shorts","type":"shorts","results":[{"id":"YJ8-w-FF9wI","kind":"short","url":"https://www.youtube.com/watch?v=YJ8-w-FF9wI","title":"She should have listened...😅 #shorts #siblings #challenge","description":null,"thumbnailUrl":"https://i.ytimg.com/vi/YJ8-w-FF9wI/hq720_2.jpg?sqp=-oaymwFBCNAFEJQDSFryq4qpAzMIARUAAIhCGADYAQHiAQoIGBACGAY4AUAB8AEB-AG2CIACgA-KAgwIABABGGUgXyhWMA8=&rs=AOn4CLACS50YTpm_in0wPldW4dW_VJiK3w","channel":{"id":"UC8HlbqYj-9qTta5WleFvNZw","title":"The CAN Family","handle":"TheCANFamily","thumbnailUrl":"https://yt3.ggpht.com/fHiTkzf53O4ZAKZ5sJ2DfUrqub5LoVAEz5RMgeSdaPJnGO47dE6dZLohUMaQrwZl0jx4nJmbhA=s68-c-k-c0x00ffffff-no-rj"},"viewCount":6392617,"viewCountText":"6,392,617 views","publishedAt":"2026-05-06T06:28:10.928Z","publishedTimeText":"13 days ago","durationSeconds":63,"durationText":"1:03","badges":[]}],"totalResults":1,"page":{"nextCursor":"EkASCSIjc2hvcnRzIhowRWdJUUNVZ1VnZ0VMV1VvNExYY3RSa1k1ZDBteUFRWUtCQWdERUFMcUFRUUlBaEFaoAIEGIHg6BgiC3NlYXJjaC1mZWVk","hasMore":true}},"meta":{"requestId":"req_01example_hashtag_shorts","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/playlists":{"get":{"tags":["YouTube"],"summary":"Get YouTube playlist","description":"Get a YouTube playlist.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"emptyResults":"An empty `data.videos` array with `data.lookupStatus: \"found\"` means the playlist resolved but returned no videos in the response.","disambiguation":"Use `data.lookupStatus` to distinguish a resolved playlist from `not_found`."},"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":"YouTube playlist id, or a YouTube playlist URL (the `list` query value is used when present)."},"required":true,"description":"YouTube playlist id, or a YouTube playlist URL (the `list` query value is used when present).","name":"playlistId","in":"query"}],"responses":{"200":{"description":"YouTube playlist lookup result. 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 playlist was resolved for this request."},"playlist":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"YouTube playlist identifier."},"title":{"type":"string","nullable":true,"description":"Playlist title when available."},"owner":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["youtube"],"description":"Social platform for this channel."},"platformUserId":{"type":"string","nullable":true,"description":"YouTube channel id when available."},"handle":{"type":"string","nullable":true,"description":"YouTube channel handle without a leading @ when available."},"displayName":{"type":"string","nullable":true,"description":"Public display name for the playlist owner when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public YouTube channel URL when available."}},"required":["platform","platformUserId","handle","displayName","profileUrl"],"description":"Playlist owner when available."},"totalVideos":{"type":"integer","nullable":true,"minimum":0,"description":"Reported total number of videos in the playlist when available."}},"required":["id","title","owner","totalVideos"],"description":"Playlist summary when found."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"YouTube video identifier."},"title":{"type":"string","nullable":true,"description":"Video title when available."},"url":{"type":"string","nullable":true,"description":"Canonical public YouTube URL for the video when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Best available thumbnail image URL when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the video in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"channelTitle":{"type":"string","nullable":true,"description":"Uploader channel title shown for the video when available."},"channelUrl":{"type":"string","nullable":true,"description":"Uploader channel URL when available."}},"required":["id","title","url","thumbnailUrl","durationSeconds","durationText","channelTitle","channelUrl"],"description":"A single video entry in a YouTube playlist."},"description":"Videos in the playlist when found. This array is empty when the playlist is not found."}},"required":["lookupStatus","playlist","videos"],"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","playlist":{"id":"PLP32wGpgzmIlInfgKVFfCwVsxgGqZNIiS","title":"Songs with Lyrics 2026 - New Songs & Music","owner":{"platform":"youtube","platformUserId":"UC0-wiBH12UgtWqLjo-EvpOw","handle":"lovelytunes7622","displayName":"Lovely Tunes","profileUrl":"https://www.youtube.com/@lovelytunes7622"},"totalVideos":100},"videos":[{"id":"AdBzzpq3xV4","title":"Lady Gaga, Bruno Mars - Die With A Smile","url":"https://www.youtube.com/watch?v=AdBzzpq3xV4","thumbnailUrl":"https://i.ytimg.com/vi/AdBzzpq3xV4/hqdefault.jpg","durationSeconds":255,"durationText":"4:15","channelTitle":"LatinHype","channelUrl":"https://www.youtube.com/@LatinHype"}]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","playlist":null,"videos":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/community-posts":{"get":{"tags":["YouTube"],"summary":"Get YouTube community post","description":"Get the contents of a YouTube community post.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-agent-hints":{"disambiguation":"Use `data.lookupStatus` to distinguish a resolved community post from `not_found`."},"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 YouTube community post URL."},"required":true,"description":"Public YouTube community post URL.","name":"url","in":"query"}],"responses":{"200":{"description":"YouTube community post details. 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 community post was resolved for this request."},"post":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"YouTube community post identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public YouTube community post URL."},"text":{"type":"string","nullable":true,"description":"Post text content when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."}},"required":["id","url","text","publishedAt","publishedTimeText"],"description":"Community post details when found."},"channel":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["youtube"],"description":"Social platform for this channel."},"platformUserId":{"type":"string","nullable":true,"description":"YouTube channel id when available."},"handle":{"type":"string","nullable":true,"description":"YouTube channel handle without a leading @ when available."},"displayName":{"type":"string","nullable":true,"description":"Public display name for the channel when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public YouTube channel URL when available."}},"required":["platform","platformUserId","handle","displayName","profileUrl"],"description":"Publishing channel when found."},"media":{"type":"object","properties":{"imageUrls":{"type":"array","items":{"type":"string","minLength":1},"description":"Image URLs attached to the community post."},"linkedVideo":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"YouTube video identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public YouTube watch URL."},"title":{"type":"string","nullable":true,"description":"Video title when available."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"publishedAt":{"type":"string","nullable":true,"description":"Publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration of the video in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."}},"required":["id","url","title","thumbnailUrl","publishedAt","publishedTimeText","viewCount","viewCountText","durationSeconds","durationText"],"description":"Linked video when the post promotes or embeds one."}},"required":["imageUrls","linkedVideo"],"description":"Media attached to the community post."},"metrics":{"type":"object","nullable":true,"properties":{"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."}},"required":["likes"],"description":"Engagement metrics when found."}},"required":["lookupStatus","post","channel","media","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","post":{"id":"Ugkxvj2KoApYAXoqLWnKVr6zZe5JjeHrQeP8","url":"https://www.youtube.com/post/Ugkxvj2KoApYAXoqLWnKVr6zZe5JjeHrQeP8","text":"How to build something meaningful\n\n1. sit down\n2. set a timer for 2 hours\n3. work\n4. do that over and over and over\n\nNOTHING meaningful was built in a day, a week, or even a month\n\nyou should launch quickly, but the work can't end there\n\nsuccessful products have YEARS of craft behind them\n\nstart building yours today: http://starterstory.com/bsm","publishedAt":"2025-11-19T06:27:25.369Z","publishedTimeText":"6 months ago"},"channel":{"platform":"youtube","platformUserId":"UChhw6DlKKTQ9mYSpTfXUYqA","handle":"starterstory","displayName":"Starter Story","profileUrl":"https://www.youtube.com/@starterstory"},"media":{"imageUrls":["https://yt3.ggpht.com/uer4ij-RqnTqudtdT5VZNvEjzVXA3PGLHwNpjMfraB7mfbX_Bm0-fSpaFXkfw3EA4uZ7BY8YPa1gU08=s640-c-fcrop64=1,20000000dfffffff-rw-nd-v1","https://yt3.ggpht.com/va-8_8IWK7qI85YZLI66Z6hynbM1V8P2FnoC9piDh1YxdUW0Df5o-XPb0RGp9ePTIpdn7rxK_jrg7-0=s640-c-fcrop64=1,20000000dfffffff-rw-nd-v1","https://yt3.ggpht.com/s9KPa9gKfenu_CvipeYKAPV5ZyhpzwfS2YDoPv9QB3sZR_Z6RdSFpKecAkX5LElHzpcgujB5aKgJSQ=s640-c-fcrop64=1,20000000dfffffff-rw-nd-v1","https://yt3.ggpht.com/QGeo4ddYFARxBEL69nLGoafe_TAlfQ7aZlPSo0oY8Qbj9sx85Nh3YdzbfPdoofFrpHw4GTDEhmQs2w=s640-c-fcrop64=1,20000000dfffffff-rw-nd-v1"],"linkedVideo":null},"metrics":{"likes":785}},"meta":{"requestId":"req_youtube_community_post_found","creditsCharged":1,"version":"v1"}}},"with_video":{"value":{"data":{"lookupStatus":"found","post":{"id":"UgkxnKxeIrq7B2_SbSk15owSNJ8nScM1Byzb","url":"https://www.youtube.com/post/UgkxnKxeIrq7B2_SbSk15owSNJ8nScM1Byzb","text":"hey my angels, my new music video for 'get naked' is out now","publishedAt":"2026-04-19T06:29:45.701Z","publishedTimeText":"1 month ago"},"channel":{"platform":"youtube","platformUserId":"UCni_tTxJH8S1_RCnoe5amow","handle":"panicbaby1","displayName":"panicbaby","profileUrl":"https://www.youtube.com/@panicbaby1"},"media":{"imageUrls":[],"linkedVideo":{"id":"wwO6DFpsnq4","url":"https://www.youtube.com/watch?v=wwO6DFpsnq4","title":"panicbaby - get naked (Official Video)","thumbnailUrl":"https://i.ytimg.com/vi/wwO6DFpsnq4/hq720.jpg","publishedAt":"2026-04-19T06:29:45.700Z","publishedTimeText":"1 month ago","viewCount":1525536,"viewCountText":"1,525,536 views","durationSeconds":137,"durationText":"2:17"}},"metrics":{"likes":13}},"meta":{"requestId":"req_01example_video","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null,"channel":null,"media":{"imageUrls":[],"linkedVideo":null},"metrics":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/videos":{"get":{"tags":["YouTube"],"summary":"Get YouTube video","description":"Get a single YouTube video.","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 YouTube video. Shorts URLs are also supported."},"required":true,"description":"Link to the YouTube video. Shorts URLs are also supported.","name":"url","in":"query"},{"schema":{"type":"string","minLength":2,"maxLength":16,"description":"Optional preferred language for returned text when the source supports localization."},"required":false,"description":"Optional preferred language for returned text when the source supports localization.","name":"language","in":"query"}],"responses":{"200":{"description":"YouTube video metadata. 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 video was resolved for this request."},"video":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"YouTube video identifier."},"url":{"type":"string","minLength":1,"description":"Canonical public YouTube URL."},"title":{"type":"string","description":"Video title."},"description":{"type":"string","nullable":true,"description":"Video description text when available."},"descriptionLinks":{"type":"array","items":{"type":"string","minLength":1},"description":"URLs extracted from the description when available."},"thumbnailUrl":{"type":"string","minLength":1,"description":"Best available thumbnail image URL."},"publishedAt":{"type":"string","nullable":true,"description":"Publish timestamp when available."},"publishDateText":{"type":"string","nullable":true,"description":"Human-readable publish date label when available."},"durationMs":{"type":"integer","nullable":true,"minimum":0,"description":"Video duration in milliseconds when available."},"durationFormatted":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"genre":{"type":"string","nullable":true,"description":"Category or genre label when available."},"keywords":{"type":"array","items":{"type":"string","minLength":1},"description":"Keyword tags associated with the video when available."},"isPaidPromotion":{"type":"boolean","description":"Whether the video is marked as paid promotion."}},"required":["id","url","title","description","descriptionLinks","thumbnailUrl","publishedAt","publishDateText","durationMs","durationFormatted","genre","keywords","isPaidPromotion"],"description":"Video details when found."},"channel":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["youtube"],"description":"Social platform for this channel."},"handle":{"type":"string","minLength":1,"description":"YouTube channel handle without a leading @."},"displayName":{"type":"string","nullable":true,"description":"Public display name for the YouTube channel."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public YouTube channel URL."},"platformUserId":{"type":"string","description":"YouTube channel id when available."}},"required":["platform","handle","displayName","profileUrl"],"description":"Uploader channel when found."},"metrics":{"type":"object","nullable":true,"properties":{"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"likes":{"type":"integer","nullable":true,"minimum":0,"description":"Like count when available."},"comments":{"type":"integer","nullable":true,"minimum":0,"description":"Comment count when available."}},"required":["views","likes","comments"],"description":"Engagement metrics when found."},"chapters":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","description":"Chapter title."},"startTimeText":{"type":"string","nullable":true,"description":"Human-readable chapter start time when available."},"startTimeSeconds":{"type":"number","minimum":0,"description":"Chapter start offset in seconds."}},"required":["title","startTimeText","startTimeSeconds"],"description":"A chapter marker in the video timeline."},"description":"Chapter markers when available."},"captions":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string","description":"Caption track label."},"languageCode":{"type":"string","description":"BCP-47 style language code when available."},"kind":{"type":"string","nullable":true,"description":"Caption kind when available."},"isTranslatable":{"type":"boolean","description":"Whether the track can be translated in the player."}},"required":["label","languageCode","kind","isTranslatable"],"description":"A caption or subtitle track available for the video."},"description":"Caption and subtitle tracks when available."},"relatedVideos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Related video id."},"url":{"type":"string","nullable":true,"description":"Canonical watch URL when available."},"title":{"type":"string","description":"Related video title."},"thumbnailUrl":{"type":"string","nullable":true,"description":"Thumbnail image URL when available."},"publishedAt":{"type":"string","nullable":true,"description":"Resolved publish timestamp when available."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"viewCount":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"viewCountText":{"type":"string","nullable":true,"description":"Human-readable view count when available."},"durationSeconds":{"type":"integer","nullable":true,"minimum":0,"description":"Duration in seconds when available."},"durationText":{"type":"string","nullable":true,"description":"Human-readable duration label when available."},"channel":{"type":"object","nullable":true,"properties":{"displayName":{"type":"string","nullable":true,"description":"Related video channel title when available."},"handle":{"type":"string","nullable":true,"description":"Related video channel handle when available."},"profileUrl":{"type":"string","nullable":true,"description":"Related video channel URL when available."},"platformUserId":{"type":"string","description":"Related video channel id when available."}},"required":["displayName","handle","profileUrl"],"description":"Uploader channel summary when available."}},"required":["id","url","title","thumbnailUrl","publishedAt","publishedTimeText","viewCount","viewCountText","durationSeconds","durationText","channel"],"description":"A related or recommended video entry."},"description":"Related videos suggested after playback when available."}},"required":["lookupStatus","video","channel","metrics","chapters","captions","relatedVideos"],"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":"Y2Ah_DFr8cw","url":"https://www.youtube.com/watch?v=Y2Ah_DFr8cw","title":"Example video","description":"Description text.","descriptionLinks":[],"thumbnailUrl":"https://img.youtube.com/vi/Y2Ah_DFr8cw/maxresdefault.jpg","publishedAt":"2019-02-22T03:19:54-08:00","publishDateText":"Feb 22, 2019","durationMs":348000,"durationFormatted":"00:05:48","genre":"People & Blogs","keywords":["example"],"isPaidPromotion":false},"channel":{"platform":"youtube","handle":"afroballer8906","displayName":"Afroballer","profileUrl":"https://www.youtube.com/@afroballer8906","platformUserId":"UCWH3hing1Qb4LnkRfQdxsxQ"},"metrics":{"views":372864,"likes":4043,"comments":358},"chapters":[],"captions":[{"label":"English (auto-generated)","languageCode":"en","kind":"asr","isTranslatable":true}],"relatedVideos":[{"id":"lzDTK5kEdkM","url":"https://www.youtube.com/watch?v=lzDTK5kEdkM","title":"Charles Barkley and Shaq FUNNIEST MOMENTS","thumbnailUrl":"https://i.ytimg.com/vi/lzDTK5kEdkM/hqdefault.jpg","publishedAt":"2025-02-16T19:25:39.493Z","publishedTimeText":"11 months ago","viewCount":1800000,"viewCountText":"1.8M views","durationSeconds":1081,"durationText":"18:01","channel":{"displayName":"SkyHooked","handle":"SkyHooked","profileUrl":"https://www.youtube.com/@SkyHooked","platformUserId":"UCrX8GD5f_O-Cu5Y2vQuSSvw"}}]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"short":{"value":{"data":{"lookupStatus":"found","video":{"id":"QLu_ZsRc_G0","url":"https://www.youtube.com/watch?v=QLu_ZsRc_G0","title":"Covering 10 points, a surprisingly tricky puzzle.","description":"Made as part of a monthly series of puzzles for the 2026 Year of Math.","descriptionLinks":[],"thumbnailUrl":"https://img.youtube.com/vi/QLu_ZsRc_G0/maxresdefault.jpg","publishedAt":"2026-04-16T09:08:21-07:00","publishDateText":"Apr 16, 2026","durationMs":39000,"durationFormatted":"00:00:39","genre":"Education","keywords":["Mathematics"],"isPaidPromotion":false},"channel":{"platform":"youtube","handle":"3blue1brown","displayName":"3Blue1Brown","profileUrl":"https://www.youtube.com/@3blue1brown","platformUserId":"UCYO_jab_esuFRV4b17AJtAw"},"metrics":{"views":575269,"likes":14359,"comments":1300},"chapters":[],"captions":[{"label":"English (auto-generated)","languageCode":"en","kind":"asr","isTranslatable":true}],"relatedVideos":[]},"meta":{"requestId":"req_01example_short","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","video":null,"channel":null,"metrics":null,"chapters":[],"captions":[],"relatedVideos":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/videos/comments":{"get":{"tags":["YouTube"],"summary":"List YouTube video comments","description":"Get comments on a YouTube video.","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 YouTube video whose comments should be listed."},"required":true,"description":"Link to the YouTube 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":{"type":"string","enum":["top","newest"],"description":"Comment sort order. `top` returns highest-ranked comments; `newest` returns the most recent comments."},"required":false,"description":"Comment sort order. `top` returns highest-ranked comments; `newest` returns the most recent comments.","name":"order","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."},"text":{"type":"string","description":"Comment text."},"createdAt":{"type":"string","description":"ISO-8601 timestamp when the comment was published."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"likeCount":{"type":"integer","minimum":0,"description":"Like count on the comment."},"replyCount":{"type":"integer","minimum":0,"description":"Direct reply count for the comment thread."},"repliesCursor":{"type":"string","nullable":true,"description":"Use as `cursor` on comment replies. Null when unavailable."},"author":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Public YouTube channel handle without a leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown on the commenter channel."},"platformUserId":{"type":"string","description":"YouTube channel id when available."},"verified":{"type":"boolean","description":"Whether the commenter channel is verified."},"creator":{"type":"boolean","description":"Whether the commenter is the video creator."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the commenter when available."},"channelUrl":{"type":"string","nullable":true,"description":"Channel page URL when available."}},"required":["handle","displayName","verified","creator","avatarUrl","channelUrl"],"description":"Comment author."}},"required":["id","text","createdAt","publishedTimeText","likeCount","replyCount","repliesCursor","author"],"description":"A single top-level comment on a YouTube 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."}},"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":"Ugzge340dBgB75hWBm54AaABAg","text":"can confirm: he never gave us up","createdAt":"2025-05-19T04:37:01.166Z","publishedTimeText":"1 year ago","likeCount":241000,"replyCount":960,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6Z2UzNDBkQmdCNzVoV0JtNTRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pnZTM0MGRCZ0I3NWhXQm01NEFhQUJBZw%3D%3D","author":{"handle":"YouTube","displayName":"@YouTube","platformUserId":"UCBR8-60-B28hp2BmDPdntcQ","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/3s6evpqAiDU9tQR4sC2siJippbH2RWVPnwHgyl4V0th2iuQz0VDQZbUhQBGmsxLYo-mjG6TqZQ=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@YouTube"}},{"id":"UgyEnXfdC-umwvTt8JF4AaABAg","text":"Gonna flag this for nudity so I can rick roll the YouTube staff","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago","likeCount":551000,"replyCount":590,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd5RW5YZmRDLXVtd3ZUdDhKRjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3lFblhmZEMtdW13dlR0OEpGNEFhQUJBZw%3D%3D","author":{"handle":"Oatman69","displayName":"@Oatman69","platformUserId":"UCWf34D_s8K_m2vwBISIDWtg","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ghenbV7T5VMOA3iqp3PThC82exqcu7iVng_iWNx1Ujak72Ti4oZZ_XzSVzIrfk9arP1XrFtnZA=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@Oatman69"}},{"id":"UgzH1AYZTHMMZ8is2Rd4AaABAg","text":"Petition to make this the national anthem of the internet","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago","likeCount":140000,"replyCount":964,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6SDFBWVpUSE1NWjhpczJSZDRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pIMUFZWlRITU1aOGlzMlJkNEFhQUJBZw%3D%3D","author":{"handle":"SonimodGT","displayName":"@SonimodGT","platformUserId":"UC22XFsGtRW-YuwyzgoF53ZA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/71aRHxohwkSue6uJ0p_PsZlj7xyyh_SFFqz3K2LOOFp4H3Y4zKXPY0Sa5MCiob0SYAYBizRbxR0=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@SonimodGT"}},{"id":"UgxIOV-sXAchpKX94cB4AaABAg","text":"1987 : normal song \r\n2026 : national anthem of the universe","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago (edited)","likeCount":128000,"replyCount":933,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd4SU9WLXNYQWNocEtYOTRjQjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hJT1Ytc1hBY2hwS1g5NGNCNEFhQUJBZw%3D%3D","author":{"handle":"ochkalov","displayName":"@ochkalov","platformUserId":"UCtbyFPryy7J4DR4xh5CRCvA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/mnit-bn8T-v7Z3XoOg71uoXPsN0sErvP-fCJzUboX6CfdJTnQjssN1QATams-lV9zMyZoqwI1Q=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@ochkalov"}},{"id":"Ugwbeb0IngkhdpQo5CJ4AaABAg","text":"I got rickrolled by myself🥀","createdAt":"2026-05-16T04:37:01.166Z","publishedTimeText":"3 days ago","likeCount":66,"replyCount":0,"repliesCursor":null,"author":{"handle":"SamuelMilano_2012","displayName":"@SamuelMilano_2012","platformUserId":"UCPwXUXnEh7aeBL_CKZCNHCw","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/GQqdyu5AO4deGEzzSbWICrwPEOiYnfOFDPzqTOXq8_5cO3KTQc8d7K3b2Tn81vjyGFn8c4Vw=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@SamuelMilano_2012"}},{"id":"UgzPApZxcYo19-4WtQB4AaABAg","text":"pov: You Scanned a QR CODE","createdAt":"2026-04-28T04:37:01.166Z","publishedTimeText":"3 weeks ago","likeCount":2300,"replyCount":134,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6UEFwWnhjWW8xOS00V3RRQjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pQQXBaeGNZbzE5LTRXdFFCNEFhQUJBZw%3D%3D","author":{"handle":"QaderOriginal","displayName":"@QaderOriginal","platformUserId":"UC6rhJs3GhQolIq_p47rRJ_w","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/qpJDoUTUwVViPoGaK13LXMh7JT2oo-3g5VUOWtPG578_Hlz-AdYUBSNZXUb9ueMgWGBPawJxS2w=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@QaderOriginal"}},{"id":"Ugw10bSluCDSZMIxUSB4AaABAg","text":"Let’s put the meme aside, this is actually a banging song.","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago","likeCount":211000,"replyCount":525,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd3MTBiU2x1Q0RTWk1JeFVTQjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3cxMGJTbHVDRFNaTUl4VVNCNEFhQUJBZw%3D%3D","author":{"handle":"LK-ht7qz","displayName":"@LK-ht7qz","platformUserId":"UCHpvHTRSILoOFKWX5oFCYDA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/RJnrz4JwDmHNgtFdnVdJ6FKLiuo59IuHkY6bvqaEJM0mxTSlq0GKQs_ItA-sJ8QMqps_lf9Lvgs=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@LK-ht7qz"}},{"id":"UgwTYG8iLuateRO4sAV4AaABAg","text":"I got rickrolled by a link saying it got taken down.","createdAt":"2026-02-19T04:37:01.166Z","publishedTimeText":"3 months ago","likeCount":25000,"replyCount":843,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd3VFlHOGlMdWF0ZVJPNHNBVjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dUWUc4aUx1YXRlUk80c0FWNEFhQUJBZw%3D%3D","author":{"handle":"JB_OldVoltBike","displayName":"@JB_OldVoltBike","platformUserId":"UCSA_nacyrxIxDtq4RWEJS7A","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/KgN7cIcRVkf-A9pAMaXPmzpgyOYeJVff43BVITVJkKo4Q9u3Z4Vi1bOsriRSxpSB1ZDTwq0kfw=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@JB_OldVoltBike"}},{"id":"UgzOIBYEjun6K5SXSyF4AaABAg","text":"This is not what the QR code siad it will be","createdAt":"2026-05-14T04:37:01.166Z","publishedTimeText":"5 days ago","likeCount":465,"replyCount":12,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6T0lCWUVqdW42SzVTWFN5RjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pPSUJZRWp1bjZLNVNYU3lGNEFhQUJBZw%3D%3D","author":{"handle":"Jurassic_nature_001","displayName":"@Jurassic_nature_001","platformUserId":"UCK7Gy-Jrzm9F9xN4ReAxFJQ","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/R6rS5v3u_9yeqweKNMCYh0MS46DE1MhH0ssf44Md7naUpQRgBe-deavD0ICUPooKBGYNTjlQcC4=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@Jurassic_nature_001"}},{"id":"UgwnXz0vJESXwxLUMet4AaABAg","text":"1B people have been Rick Rolled, what an achievement","createdAt":"2022-05-19T04:37:01.166Z","publishedTimeText":"4 years ago","likeCount":82000,"replyCount":558,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd3blh6MHZKRVNYd3hMVU1ldDRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3duWHowdkpFU1h3eExVTWV0NEFhQUJBZw%3D%3D","author":{"handle":"Zenic.","displayName":"@Zenic.","platformUserId":"UCRKqb7N0kLSVYmFjLjvwkIg","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/6JO8rywT5L4jktx-N4NvkEAOIT9btMym_UmlSyRgmAw-Cwk1-87oOx0KhrNbwbv3Em2ZUcYJOHg=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@Zenic."}},{"id":"Ugzemy2nvw_7EyaIWj54AaABAg","text":"There's a reason this has over 600M views...","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago","likeCount":1000000,"replyCount":964,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6ZW15Mm52d183RXlhSVdqNTRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3plbXkybnZ3XzdFeWFJV2o1NEFhQUJBZw%3D%3D","author":{"handle":"Timeworks","displayName":"@Timeworks","platformUserId":"UCv5mo0iXze8aKFjvdp51Fjg","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/42ffwzIe9i55CVc2WIVrhdTRYZS7wA97YQxd-ZxUYhzj3tVVHXMW1vuLKAxnc1l7jlaVkpcecI4=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@Timeworks"}},{"id":"Ugzfq1DF_8hU1W2ap1x4AaABAg","text":"Ah yes we meet once again","createdAt":"2021-05-19T04:37:01.166Z","publishedTimeText":"5 years ago","likeCount":47000,"replyCount":409,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6ZnExREZfOGhVMVcyYXAxeDRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pmcTFERl84aFUxVzJhcDF4NEFhQUJBZw%3D%3D","author":{"handle":"thatonerandomginger","displayName":"@thatonerandomginger","platformUserId":"UCUjzEiZDlSi50mjsOvGkf6A","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_m8HvYFWOzdUBadgaDvousw1KpgBkywuAU88VVAIPQd6a0=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@thatonerandomginger"}},{"id":"Ugwn-pmRPqF9vEWrqX94AaABAg","text":"got an ad before this video started, saved me","createdAt":"2026-05-19T04:37:01.166Z","publishedTimeText":"48 minutes ago","likeCount":1,"replyCount":0,"repliesCursor":null,"author":{"handle":"SubjectGamerOfficial","displayName":"@SubjectGamerOfficial","platformUserId":"UCU-JGWWIGSCTEwDmKEKM-tA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/pv_CKp8XY8LIJkt3hBtO-QTb_Qa1CEl5281XO2wQKnLpgbbB51_C3mF6E4kkHebltdQiUlAs_w=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@SubjectGamerOfficial"}},{"id":"UgzNF6YV0mlS2GWceOZ4AaABAg","text":"I didn't get rickrolled today, I just really enjoy this song","createdAt":"2021-05-19T04:37:01.166Z","publishedTimeText":"5 years ago","likeCount":363000,"replyCount":932,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6TkY2WVYwbWxTMkdXY2VPWjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3pORjZZVjBtbFMyR1djZU9aNEFhQUJBZw%3D%3D","author":{"handle":"CinematicCaptures","displayName":"@CinematicCaptures","platformUserId":"UCA1oEnRYKBmFDAcoKso2pAA","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_m2p2NbssAK79AX2uQzEvNPnnEIAIlB-PdN9Q4GSiqP7k8=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@CinematicCaptures"}},{"id":"Ugyv8ryCW2kS1Psodc54AaABAg","text":"CBSE has humor","createdAt":"2026-03-19T04:37:01.166Z","publishedTimeText":"2 months ago","likeCount":10000,"replyCount":75,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd5djhyeUNXMmtTMVBzb2RjNTRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3l2OHJ5Q1cya1MxUHNvZGM1NEFhQUJBZw%3D%3D","author":{"handle":"ItzAravind","displayName":"@ItzAravind","platformUserId":"UCWazGIjBb957BwMShG4hvmA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_lCPHHsiGYra6BdNjRBGb39kZnLydr_UoaqOp5IuG_-K2p1=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@ItzAravind"}},{"id":"UgyyEqaBXOKgoi4cf7l4AaABAg","text":"Ok let’s be honest here\nRick rolling is the one meme that will never die","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago (edited)","likeCount":424000,"replyCount":706,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd5eUVxYUJYT0tnb2k0Y2Y3bDRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3l5RXFhQlhPS2dvaTRjZjdsNEFhQUJBZw%3D%3D","author":{"handle":"JetpackGamer456","displayName":"@JetpackGamer456","platformUserId":"UCNRtoaGfHCLksAz2ofEAfgA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_nyhrpC59MDbvwlTlkeHmG6xvzXfJQdI4SBR7r8a5XLhJg=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@JetpackGamer456"}},{"id":"Ugxb9dBkRPnSZXmA52p4AaABAg","text":"The QR code will take you to Rick Roll.","createdAt":"2026-05-19T04:37:01.166Z","publishedTimeText":"12 hours ago","likeCount":2,"replyCount":0,"repliesCursor":null,"author":{"handle":"sobrinhodosukuna","displayName":"@sobrinhodosukuna","platformUserId":"UCO5iZ7J9Snw8wLMAvKhBf9A","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/hnK0MAWaSBc9YVlKIt1yhu9tLw7xRnC4UFXEHGDE_O7PHAdcM0BzKRN03-a7iVyBy967AGfRuSU=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@sobrinhodosukuna"}},{"id":"Ugz3iT8d2hlqEkapRIl4AaABAg","text":"feels like ive seen it a billion times","createdAt":"2022-05-19T04:37:01.166Z","publishedTimeText":"4 years ago","likeCount":126000,"replyCount":477,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd6M2lUOGQyaGxxRWthcFJJbDRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3ozaVQ4ZDJobHFFa2FwUklsNEFhQUJBZw%3D%3D","author":{"handle":"Kosmicd12","displayName":"@Kosmicd12","platformUserId":"UC6esFMAIud24sYSHfHGzPhg","verified":true,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_lM0UQcT_oyDCaqVxEHYyuf1dwY0hhSmAwNREq9qLhRGg=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@Kosmicd12"}},{"id":"Ugws9ZMArVs4qHOgklR4AaABAg","text":"This song is still significantly better than brainrots","createdAt":"2026-04-19T04:37:01.166Z","publishedTimeText":"1 month ago","likeCount":526,"replyCount":13,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd3czlaTUFyVnM0cUhPZ2tsUjRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dzOVpNQXJWczRxSE9na2xSNEFhQUJBZw%3D%3D","author":{"handle":"BloxyMatt","displayName":"@BloxyMatt","platformUserId":"UCGf135bnJwEA4-Km1e8l1vQ","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/iyJDy-1bs-hn40JX6oKolSSz8CnVq38vVR84QZXSbDh6_AlxjAGoPP9S7iu2z6r_bJSjCgsd=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@BloxyMatt"}},{"id":"UgxTGPJ4man6fZG4ci94AaABAg","text":"wait this is not the link to Shrek X: Endgame","createdAt":"2020-05-19T04:37:01.166Z","publishedTimeText":"6 years ago","likeCount":62000,"replyCount":389,"repliesCursor":"Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIaVWd4VEdQSjRtYW42ZlpHNGNpOTRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3hUR1BKNG1hbjZmWkc0Y2k5NEFhQUJBZw%3D%3D","author":{"handle":"randomguyontheinternet1005","displayName":"@randomguyontheinternet1005","platformUserId":"UC4s9McEaeA7guefPR0g_2bA","verified":false,"creator":false,"avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_mC-F_LUNsLxxHq0iRkdThSk-g8rlByJUfRPLo8n2HtbmB0G7VDfzswGgLJModTHVY6_A=s88-c-k-c0x00ffffff-no-rj","channelUrl":"https://youtube.com/@randomguyontheinternet1005"}}],"page":{"nextCursor":"Eg0SC2RRdzR3OVdnWGNRGAYy6gIKwAJnZXRfcmFua2VkX3N0cmVhbXMtLUNxY0JDSUFFRlJlMzBUZ2FuQUVLbHdFSTJGOFFnQVFZQnlLTUFkdjhBWlkybkl2OUJXZXNlNWV1UkxGaWJKRGJpS0paYy1DMlg0S3hZaHRYRWk3THlWSEpMbURGUkMyVVZhNk9wckU3MnppV0dYMjZVRUg4dHZpVUdGRDk4YUlTYW4xWDI4VzJHTFJIUHp1WXktSUExWDRNT2pXNVVaQzg0YWhxcUtjRElqQ1N4TnJkSlBEUlZzVFNpVEgzVlBNckZEcTRyNnZzaC1DVDB3eWYyTUJaZWhDanBva0pRc0FCRUJRU0J3aUhJQkFCR0FBU0JRaUpJQmdBRWdVSWlDQVlBQklGQ0tnZ0dBQVNCd2lFSUJBUEdBRVNCd2lGSUJBRUdBRVNCUWk3SUJnQSIRIgtkUXc0dzlXZ1hjUTAAeAEoFEIQY29tbWVudHMtc2VjdGlvbg%3D%3D","hasMore":true}},"meta":{"requestId":"req_01example_yt_comments","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/videos/comments/replies":{"get":{"tags":["YouTube"],"summary":"List YouTube comment replies","description":"Get replies to a YouTube comment.","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,"description":"Comment `repliesCursor` from Video Comments endpoint, or `page.nextCursor` to paginate replies."},"required":true,"description":"Comment `repliesCursor` from Video Comments endpoint, or `page.nextCursor` to paginate replies.","name":"cursor","in":"query"}],"responses":{"200":{"description":"Comment replies for the supplied cursor.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"replies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable identifier for the reply."},"text":{"type":"string","description":"Reply text."},"publishedAt":{"type":"string","nullable":true,"description":"ISO-8601 timestamp when the reply was published."},"publishedTimeText":{"type":"string","nullable":true,"description":"Human-readable relative publish time when available."},"replyLevel":{"type":"integer","minimum":0,"description":"Nesting depth of the reply within the thread."},"likes":{"type":"integer","minimum":0,"description":"Like count on the reply."},"replyCount":{"type":"integer","minimum":0,"description":"Direct reply count beneath this reply."},"author":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Display name or handle for the reply author."},"channelId":{"type":"string","nullable":true,"description":"YouTube channel id when available."},"channelUrl":{"type":"string","nullable":true,"description":"Channel page URL when available."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"isVerified":{"type":"boolean","description":"Whether the author channel is verified."},"isCreator":{"type":"boolean","description":"Whether the author is the video creator."}},"required":["name","channelId","channelUrl","avatarUrl","isVerified","isCreator"],"description":"Reply author."}},"required":["id","text","publishedAt","publishedTimeText","replyLevel","likes","replyCount","author"],"description":"A single reply in a YouTube comment thread."},"description":"Replies returned for this page."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor for the next page when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page of replies is available."}},"required":["nextCursor","hasMore"],"description":"Pagination information for this response."}},"required":["replies","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_paginated":{"value":{"data":{"replies":[{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHEjU2AWVXk","text":"Bro is 15 years late","publishedAt":"2025-05-19T06:58:37.246Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":3400,"replyCount":0,"author":{"name":"@Cheese-fs8sh","channelId":"UCBLgz6ukUD-XAsZY0Pel2HQ","channelUrl":"https://youtube.com/@Cheese-fs8sh","avatarUrl":"https://yt3.ggpht.com/plix_oeMCArXHz6oVTi-vlJ8YxbTeUFgYXg7lOfILOcaFWu0kz3n5st8vFaSaK4hqqqinB8np0E=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHEHm78J5Jn","text":"Only took 15 years for YouTube to get rickrolled I guess","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":2000,"replyCount":0,"author":{"name":"@SleepyBear_SB","channelId":"UCU8BOA0E3OXcWQz0m8J_b4A","channelUrl":"https://youtube.com/@SleepyBear_SB","avatarUrl":"https://yt3.ggpht.com/YWpXosPyhwob1SxwUVqMS26ZCYQqitJzrltIHAV2ZVdbRlh8tfZkQZj4Hj0KDiGmihIbtJOOUh8=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHIU6q1Jh4a","text":"Yesssssss","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":22,"replyCount":0,"author":{"name":"@koreywinn1863","channelId":"UCZwYsAKy5e5WGO62Xa7msjA","channelUrl":"https://youtube.com/@koreywinn1863","avatarUrl":"https://yt3.ggpht.com/d5GnavsZThvJLqaCn-jpBTpvgFjs-5xsgFiJye0zxrZOLQO-0gduSLtF2_tFn6SuyfC_-U0c=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHEBULT5fJJ","text":"Youtube accidently got rickrolled","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":1100,"replyCount":0,"author":{"name":"@ShyGuy_cc","channelId":"UCSD9AzRp9sX_xD30kobRKew","channelUrl":"https://youtube.com/@ShyGuy_cc","avatarUrl":"https://yt3.ggpht.com/uCkB_R4HK76i_0N4d0BO_GaNZe-3xGegU6FjU-Z4hhO2LTkdqmJwsOyDj0cFrBr-4JubJYA=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHE9eIiztxR","text":"YOUTUBE AND ONE LIKE WOOHAAAAH","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":6700,"replyCount":5,"author":{"name":"@linganguliguliwatcha","channelId":"UCjFRISlX-LPxiqViJAE3h6Q","channelUrl":"https://youtube.com/@linganguliguliwatcha","avatarUrl":"https://yt3.ggpht.com/AbGqKNjK9k5tyOqdV7cdXx-GgnGuuGQ5wj8RN42U5YCDvYHT0vaOKXGFahR36iaDPseGN08DjQ=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHGluCp9lWL","text":"HAI YOUTUBEEEEE","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":2,"likes":430,"replyCount":0,"author":{"name":"@plushy771","channelId":"UCbSQtvqJpiX8AaRInq5-49Q","channelUrl":"https://youtube.com/@plushy771","avatarUrl":"https://yt3.ggpht.com/6JSfhEpCNCGAam13kOkaIGwA15ycff8ezVMEtKNwhvmSg4GA4WhK98Yez7fsWhW25pe73tVyJwk=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHG1p7VMwAB","text":" @linganguliguliwatcha  hi","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":2,"likes":208,"replyCount":1,"author":{"name":"@ehhauh","channelId":"UC_K_YBTOyS5XHl6w_Dp0CxA","channelUrl":"https://youtube.com/@ehhauh","avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_lNT6zFLM6lRjkTQzMW5wpq3MJSfVBScD4twmsjisFnrSMsdeYivqQHoujpGOGgNFTu2Q=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHQ1oSooc7x","text":"​ @linganguliguliwatcha 😊","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":2,"likes":75,"replyCount":0,"author":{"name":"@Achfef","channelId":"UCt3ifxAl04803akGAt62aLg","channelUrl":"https://youtube.com/@Achfef","avatarUrl":"https://yt3.ggpht.com/9trTGdWcj1C3YkRN-HmNVbohrSSJ7qfX50tPqvLb9Vy3N16fqoLLN8fszuCR3YtE9L9SC58mzA=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHEAOCSlaNN","text":"new comment alert","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":1900,"replyCount":0,"author":{"name":"@NashiraArif","channelId":"UCWrbmlBO2iW7jwhSuvLsgXQ","channelUrl":"https://youtube.com/@NashiraArif","avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_n1guDiz8iQIUgFGnmh5VA5PJlNSiWQwX3Ik0ywlPv8JUDRXZiF6wxDvbC7F3YSi1BdlA=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"Ugzge340dBgB75hWBm54AaABAg.AHE8_QAWJx9AHG6xmplPpk","text":"YOOO 18 HOURS AGO.\nI CAN GUARANTEE YOUTUBE GOT RICK ROLLED 💀💙","publishedAt":"2025-05-19T06:58:37.264Z","publishedTimeText":"1 year ago","replyLevel":1,"likes":15,"replyCount":2,"author":{"name":"@sawmangames","channelId":"UCtzH0UMM4oQrI1SxO2k6jqg","channelUrl":"https://youtube.com/@sawmangames","avatarUrl":"https://yt3.ggpht.com/Z95gYQAMQ6RPWYLOeXbo4kZWXC9zDZKaOCGZRwvWH_r9Da4ivMGbMHLHgDhTdD-Qyx1wYrfE=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}}],"page":{"nextCursor":"Eg0SC2RRdzR3OVdnWGNRGAYyuQIKsQFnZXRfY29tbWVudF93aXRoX3JlcGxpZXNfc3RyZWFtLS1DbE1JZ0FRVkY3ZlJPQnBKQ2tVSTJGOFFnQVFZQnlJN2g4azE3NVVTajhwVDZoQ0IydnZjYVptbE5PYjlnOXprc0dfM0FpTGtwd19vZnhvNWQ1QzhrVzhyVW9LdTZLOVJZU05SZkxLSlVsbGNfaklRQnhJRkNLQWdHQUVpRGdvTUNKZlZuOEFHRU5EUGdvc0QaUBIaVWd6Z2UzNDBkQmdCNzVoV0JtNTRBYUFCQWciAggAKhhVQ3VBWEZrZ3N3MUw3eGFDZm5kNUpKT3cyC2RRdzR3OVdnWGNRQABIMoIBAggBKAdCL2NvbW1lbnQtcmVwbGllcy1pdGVtLVVnemdlMzQwZEJnQjc1aFdCbTU0QWFBQkFn","hasMore":true}},"meta":{"requestId":"req_01example_paginated","creditsCharged":1,"version":"v1"}}},"single_reply":{"value":{"data":{"replies":[{"id":"UgxwFVx3ERR0ZDPpJ3F4AaABAg.AWyZIYUCJ3FAWygH7SL-9b","text":"I'm right here with you 😊","publishedAt":"2026-05-19T04:43:33.912Z","publishedTimeText":"2 hours ago","replyLevel":1,"likes":0,"replyCount":0,"author":{"name":"@Flourish-cash","channelId":"UClxUIS_CP9jgJHmVY7SDMUw","channelUrl":"https://youtube.com/@Flourish-cash","avatarUrl":"https://yt3.ggpht.com/w6NlAuuMK8UBxxuuED3OaLwuk4VxQNhKi5AmnD3MDEceZAj0JnUe5UZmc1t4Hd97rts5O9Ve=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_single","creditsCharged":1,"version":"v1"}}},"last_page":{"value":{"data":{"replies":[{"id":"UgzOIBYEjun6K5SXSyF4AaABAg.AWkpetbsJ13AWyCqSNI1LS","text":"Same","publishedAt":"2026-05-19T10:36:04.601Z","publishedTimeText":"12 days ago","replyLevel":1,"likes":0,"replyCount":0,"author":{"name":"@TiffanyD-g5j","channelId":"UCGYpms0vJq5BzbRV69k_3nw","channelUrl":"https://youtube.com/@TiffanyD-g5j","avatarUrl":"https://yt3.ggpht.com/jY2NSdFs-ANVWGOqvmcZsNPOQ8adwUqoyr3_Vn8U_Hsft8oWuOrmiAEzaKYso1E8SGGzwNOg=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"UgzOIBYEjun6K5SXSyF4AaABAg.AWkpetbsJ13AWzBVJ_R7-h","text":"Same","publishedAt":"2026-05-19T10:36:04.602Z","publishedTimeText":"12 days ago","replyLevel":1,"likes":0,"replyCount":0,"author":{"name":"@jhuncarllaurente8855","channelId":"UCR1ssw486aB9t_dUFtgiuow","channelUrl":"https://youtube.com/@jhuncarllaurente8855","avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_lm_zOZN6FVCMC9XEgozZJNxopPmyd0qspJwRJFxH0emdOvBN8EgbvmEsBy4G2A8EPFaA=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"UgzOIBYEjun6K5SXSyF4AaABAg.AWkpetbsJ13AWl6aRumkja","text":"https://youtu.be/W9QVQvGSsKI?si=trY8Kn9WVtQfnQWY .","publishedAt":"2026-05-17T10:36:04.602Z","publishedTimeText":"2 weeks ago","replyLevel":1,"likes":2,"replyCount":1,"author":{"name":"@Komunaka-s2n","channelId":"UCbSErL1z653P_vdGQsT_mZA","channelUrl":"https://youtube.com/@Komunaka-s2n","avatarUrl":"https://yt3.ggpht.com/ytc/AIdro_njGmxKfoPrBMaI_BcpyasarYRb-fAoAoQbz4AUVTUbPx-Uvg-WVnjh5erCqOgSOACzYA=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}},{"id":"UgzOIBYEjun6K5SXSyF4AaABAg.AWkpetbsJ13AWri4lsaIIV","text":"​ @Komunaka-s2n  why","publishedAt":"2026-05-17T10:36:04.602Z","publishedTimeText":"2 weeks ago","replyLevel":2,"likes":0,"replyCount":0,"author":{"name":"@eduardocabrera2226","channelId":"UCfQjnAEqJ9mG76fjHYjncLQ","channelUrl":"https://youtube.com/@eduardocabrera2226","avatarUrl":"https://yt3.ggpht.com/f-WsLrEJI2MNcBltvAgvZAuMTZV-3DN3CtJOv6Ud1VxUJeFzvsXoSfBFwvlAECMr1BwKVT6-C6I=s88-c-k-c0x00ffffff-no-rj","isVerified":false,"isCreator":false}}],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_last","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/youtube/videos/transcript":{"get":{"tags":["YouTube"],"summary":"Get YouTube video transcript","description":"Get the transcript for a YouTube video.","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 YouTube video whose transcript should be returned."},"required":true,"description":"Link to the YouTube video whose transcript should be returned.","name":"url","in":"query"},{"schema":{"type":"string","minLength":2,"maxLength":2,"description":"Optional ISO 639-1 language code (two letters) to prefer when multiple transcripts exist."},"required":false,"description":"Optional ISO 639-1 language code (two letters) to prefer when multiple transcripts exist.","name":"language","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."},"video":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"YouTube video id."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for the video."}},"required":["id","url"],"description":"Video identity when the lookup resolved."},"transcript":{"type":"object","nullable":true,"properties":{"segments":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Transcript segment text."},"startMs":{"type":"integer","minimum":0,"description":"Segment start offset in milliseconds."},"endMs":{"type":"integer","minimum":0,"description":"Segment end offset in milliseconds."}},"required":["text","startMs","endMs"],"description":"One timed transcript segment."},"description":"Timed transcript segments."},"plainText":{"type":"string","description":"Full transcript text, typically derived from captions."},"language":{"type":"string","description":"Human-readable transcript language label when reported by the lookup."}},"required":["segments","plainText","language"],"description":"Transcript content when 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":"dQw4w9WgXcQ","url":"https://www.youtube.com/watch?v=dQw4w9WgXcQ"},"transcript":{"segments":[{"text":"[Music]","startMs":320,"endMs":14580},{"text":"We're no strangers to","startMs":18800,"endMs":25960},{"text":"love. You know the rules and so do","startMs":21800,"endMs":29119},{"text":"I. I feel commitments from what I'm","startMs":25960,"endMs":30279},{"text":"thinking","startMs":29119,"endMs":34360},{"text":"of. You wouldn't get this from any other","startMs":30279,"endMs":39559},{"text":"guy. I just want to tell you how I'm","startMs":34360,"endMs":43120},{"text":"feeling. Got to make you understand.","startMs":39559,"endMs":45840},{"text":"Never going to give you up. I'm going to","startMs":43120,"endMs":49200},{"text":"let you down. I'm going to run around","startMs":45840,"endMs":53320},{"text":"and desert you. I'm going to make","startMs":49200,"endMs":56399},{"text":"you say goodbye.","startMs":53320,"endMs":59879},{"text":"Tell a lie and hurt","startMs":56399,"endMs":64040},{"text":"you. We've known each other for so","startMs":59879,"endMs":67200}],"plainText":"[Music] \n We're  no  strangers  to \n love.  You  know  the  rules  and  so  do \n I.  I  feel  commitments  from what  I'm \n thinking \n of.  You  wouldn't  get  this  from  any  other \n guy.  I  just  want  to  tell  you  how  I'm \n feeling.  Got  to  make  you  understand. \n Never  going  to  give  you  up.  I'm  going  to \n let  you  down.  I'm  going  to  run  around \n and  desert  you.  I'm  going  to  make \n you  say  goodbye. \n Tell  a  lie  and  hurt \n you.  We've  known  each  other  for  so","language":"English"}},"meta":{"requestId":"req_01example","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":"1JPwiLeo4WY","url":"https://www.youtube.com/watch?v=1JPwiLeo4WY"},"transcript":null},"meta":{"requestId":"req_01example_null","creditsCharged":1,"version":"v1"}}},"lookup_failed":{"value":{"data":{"lookupStatus":"lookup_failed","video":null,"transcript":null},"meta":{"requestId":"req_01example_lf","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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/profiles/{handle}":{"get":{"tags":["Twitter"],"summary":"Get Twitter profile","description":"Get an X 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","description":"X handle to look up, with or without a leading @."},"required":true,"description":"X 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":["twitter"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"X screen name (handle) without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown on the profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"verified":{"type":"boolean","description":"Whether X marks the profile with legacy verification (not necessarily paid blue)."},"blueVerified":{"type":"boolean","description":"Whether the account has X blue (paid) verification."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public profile URL on x.com."},"privateAccount":{"type":"boolean","description":"Whether the account is protected (private)."},"platformUserId":{"type":"string","description":"Numeric X user id (`rest_id`) as a string."},"accountCreatedAt":{"type":"integer","minimum":0,"description":"Account creation time as Unix epoch seconds when derivable."},"location":{"type":"string","nullable":true,"description":"Location string from the profile when provided."},"website":{"type":"string","nullable":true,"description":"Primary outbound link (expanded URL) from the profile."},"pinnedTweetId":{"type":"string","description":"Pinned tweet id when X exposes one."},"verificationInfo":{"type":"object","properties":{"isIdentityVerified":{"type":"boolean","description":"Whether X marks the account as identity-verified."},"verifiedSinceMsec":{"type":"string","description":"When verification became effective, as milliseconds since epoch (string from X)."},"reason":{"type":"object","properties":{"text":{"type":"string","description":"Human-readable verification reason text from X."},"entities":{"type":"array","items":{"nullable":true},"description":"Inline entity metadata for the reason text (vendor-defined)."}},"description":"Verification reason payload when X provides it."}},"required":["isIdentityVerified"],"description":"Structured verification metadata from X."},"tipJar":{"type":"object","properties":{"isEnabled":{"type":"boolean","description":"Whether the X tip jar is enabled."},"handles":{"type":"object","properties":{"bandcamp":{"type":"string","description":"Bandcamp handle from tip jar."},"bitcoin":{"type":"string","description":"Bitcoin address or handle."},"cashApp":{"type":"string","description":"Cash App handle."},"ethereum":{"type":"string","description":"Ethereum address or handle."},"goFundMe":{"type":"string","description":"GoFundMe handle."},"patreon":{"type":"string","description":"Patreon handle."},"payPal":{"type":"string","description":"PayPal handle."},"venmo":{"type":"string","description":"Venmo handle."}},"description":"Per-service handles when any are present."}},"required":["isEnabled"],"description":"Tip jar configuration when present."},"highlights":{"type":"object","properties":{"canHighlightTweets":{"type":"boolean","description":"Whether the account may highlight tweets on the profile."},"highlightedTweetCount":{"type":"integer","minimum":0,"description":"Count of highlighted tweets when reported by X."}},"required":["canHighlightTweets","highlightedTweetCount"],"description":"Tweet highlights metadata when present."},"businessAccount":{"type":"object","additionalProperties":{"nullable":true},"description":"Opaque business-account payload from X when non-empty (vendor-defined)."},"creatorSubscriptionsCount":{"type":"integer","minimum":0,"description":"Creator subscriptions count when X reports it."},"affiliateLabel":{"type":"object","properties":{"description":{"type":"string","description":"Affiliate or business label text shown on the profile."},"badgeUrl":{"type":"string","description":"Badge image URL when X provides one."},"url":{"type":"string","description":"Destination URL for the label link."}},"required":["description"],"description":"Affiliate or business label when X provides one."}},"required":["platform","handle","displayName","bio","avatarUrl","verified","blueVerified","profileUrl","privateAccount"],"description":"Profile details when available."},"metrics":{"type":"object","nullable":true,"properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count from X."},"following":{"type":"integer","minimum":0,"description":"Following (friends) count from X."},"tweets":{"type":"integer","minimum":0,"description":"Total post (status) count from X."},"favourites":{"type":"integer","minimum":0,"description":"Total favourites (likes) count from X."},"listedCount":{"type":"integer","minimum":0,"description":"Listed count when X provides it."},"mediaCount":{"type":"integer","minimum":0,"description":"Media item count when X provides it."},"fastFollowersCount":{"type":"integer","minimum":0,"description":"Fast-followers count when X provides it."}},"required":["followers","following","tweets","favourites"],"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":"twitter","handle":"elonmusk","displayName":"Elon Musk","bio":"https://t.co/dDtDyVssfm","avatarUrl":"https://pbs.twimg.com/profile_images/2053244804520427520/m8mdWZCG_400x400.jpg","bannerUrl":"https://pbs.twimg.com/profile_banners/44196397/1774145451","verified":false,"blueVerified":true,"profileUrl":"https://x.com/elonmusk","privateAccount":false,"platformUserId":"44196397","accountCreatedAt":1243973549,"location":null,"website":null,"pinnedTweetId":"2055294612751991090","verificationInfo":{"isIdentityVerified":false,"verifiedSinceMsec":"-156836000000000","reason":{"text":"This account is verified because it's an affiliate of @X on X. Learn more","entities":[{"from_index":54,"ref":{"url":"https://twitter.com/X","url_type":"ExternalUrl"},"to_index":56},{"from_index":63,"ref":{"url":"https://help.twitter.com/en/rules-and-policies/profile-labels","url_type":"ExternalUrl"},"to_index":73}]}},"tipJar":{"isEnabled":false},"highlights":{"canHighlightTweets":true,"highlightedTweetCount":992},"creatorSubscriptionsCount":242,"affiliateLabel":{"description":"X","badgeUrl":"https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg","url":"https://twitter.com/X"}},"metrics":{"followers":239969577,"following":1332,"tweets":102641,"favourites":227794,"listedCount":169024,"mediaCount":4489,"fastFollowersCount":0}},"meta":{"requestId":"req_663e3c24-faae-4481-b8c0-5ea403d434ff","creditsCharged":1,"version":"v1"}}},"private":{"value":{"data":{"lookupStatus":"private","profile":{"platform":"twitter","handle":"lukem1221","displayName":"Luke","bio":null,"avatarUrl":"https://pbs.twimg.com/profile_images/1999456116619771904/rmqNgqiu_400x400.jpg","bannerUrl":null,"verified":false,"blueVerified":false,"profileUrl":"https://x.com/lukem1221","privateAccount":true,"platformUserId":"761228485981528065","accountCreatedAt":1470325989,"location":null,"website":"https://www.voicegecko.io/","verificationInfo":{"isIdentityVerified":false},"tipJar":{"isEnabled":false},"highlights":{"canHighlightTweets":false,"highlightedTweetCount":0},"creatorSubscriptionsCount":0},"metrics":{"followers":115,"following":97,"tweets":47,"favourites":48,"listedCount":3,"mediaCount":5,"fastFollowersCount":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/profiles/{handle}/tweets":{"get":{"tags":["Twitter"],"summary":"List Twitter profile tweets","description":"List tweets from a specific X profile.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":2,"normalizationFailureCredits":2},"x-socialfetch-credits-pricing":"2 credits per successful request.","parameters":[{"schema":{"type":"string","description":"X handle to look up, with or without a leading @."},"required":true,"description":"X handle to look up, with or without a leading @.","name":"handle","in":"path"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional page size. Defaults to 40 when omitted. Maximum supported value is 100."},"required":false,"description":"Optional page size. Defaults to 40 when omitted. Maximum supported value is 100.","name":"limit","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":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"Optional: include reply tweets in the returned list. Defaults to false."},"required":false,"description":"Optional: include reply tweets in the returned list. Defaults to false.","name":"includeReplies","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"boolean"}],"description":"Optional: include pinned tweets on the first page. Defaults to false."},"required":false,"description":"Optional: include pinned tweets on the first page. Defaults to false.","name":"includePinned","in":"query"}],"responses":{"200":{"description":"Tweets for the requested profile.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether tweet data was returned for this handle."},"profile":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["twitter"],"description":"Social platform for this profile."},"handle":{"type":"string","minLength":1,"description":"Screen name without @."},"displayName":{"type":"string","nullable":true,"description":"Display name for the profile."},"bio":{"type":"string","nullable":true,"description":"Profile bio when reported by the upstream provider."},"location":{"type":"string","nullable":true,"description":"Profile location when reported by the upstream provider."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"verified":{"type":"boolean","description":"Legacy verified flag from X."},"blueVerified":{"type":"boolean","description":"Paid blue verification flag from X."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical profile URL on x.com."},"platformUserId":{"type":"string","description":"Numeric user id as a string."}},"required":["platform","handle","displayName","bio","location","avatarUrl","bannerUrl","verified","blueVerified","profileUrl"],"description":"Profile card derived from the first returned tweet when available; null when not found or when no tweet rows include author data."},"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for the tweet when available."},"text":{"type":"string","description":"Full tweet text when available."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"createdAtLabel":{"type":"string","nullable":true,"description":"Human-readable creation timestamp string when available."},"language":{"type":"string","nullable":true,"description":"Language code for the tweet when available."},"conversationId":{"type":"string","nullable":true,"minLength":1,"description":"Conversation identifier when supplied."},"inReplyToStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Parent post identifier when this post is a reply."},"quotedStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Quoted post identifier when this post quotes another."},"retweetTweetId":{"type":"string","nullable":true,"minLength":1,"description":"Original post identifier when this post is an engagement repost."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author handle without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown for the author."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public profile URL for the author when available."},"verified":{"type":"boolean","description":"Whether the author has legacy verification on X."},"blueVerified":{"type":"boolean","description":"Whether the author has paid blue verification on X."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","profileUrl","verified","blueVerified"],"description":"Author metadata for the tweet when available."},"metrics":{"type":"object","properties":{"likes":{"type":"integer","minimum":0,"description":"Like count."},"retweets":{"type":"integer","minimum":0,"description":"Retweet count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"quotes":{"type":"integer","minimum":0,"description":"Quote count."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"bookmarkCount":{"type":"integer","nullable":true,"minimum":0,"description":"Bookmark count when available."}},"required":["likes","retweets","replies","quotes","views","bookmarkCount"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Direct media URL when available."},"type":{"type":"string","enum":["photo","video"],"description":"Media type when Social Fetch can classify it confidently."},"thumbnailUrl":{"type":"string","minLength":1,"description":"Poster or thumbnail URL for video media when distinguishable."},"contentType":{"type":"string","minLength":1,"description":"MIME type reported for streamed media."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when supplied for streamed media."},"width":{"type":"integer","minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","minimum":0,"description":"Height in pixels when available."}},"required":["url","type"],"description":"Media attachment on a tweet."},"description":"Media attachments returned for the tweet."},"expandedUrl":{"type":"string","nullable":true,"description":"Expanded URL attached to the tweet when available."},"isRetweet":{"type":"boolean","description":"Whether the tweet is marked as a retweet."},"isReply":{"type":"boolean","default":false,"description":"Whether the tweet is a reply to another post."},"isQuote":{"type":"boolean","default":false,"description":"Whether the tweet quotes another post."},"source":{"type":"string","nullable":true,"description":"Source label such as `Twitter Web App` when available."}},"required":["id","url","text","createdAt","createdAtLabel","language","conversationId","inReplyToStatusId","quotedStatusId","retweetTweetId","author","metrics","media","expandedUrl","isRetweet","source"],"description":"A normalized Twitter post item."},"description":"Tweets returned for the requested profile page. May be empty when `lookupStatus` is `found` and no eligible tweets are returned, or when `lookupStatus` is `not_found`."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass as `cursor` in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page can be requested."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["lookupStatus","profile","tweets","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","profile":{"platform":"twitter","handle":"TTrimoreau","displayName":"Thomas Trimoreau","bio":"Building things on the internet.","location":"Paris, France","avatarUrl":"https://pbs.twimg.com/profile_images/2016450892006883328/8erNdoxt_normal.jpg","bannerUrl":"https://pbs.twimg.com/profile_banners/1480815621076049920/1735829559","verified":false,"blueVerified":true,"profileUrl":"https://x.com/TTrimoreau","platformUserId":"1480815621076049920"},"tweets":[{"id":"2071025589574647913","url":"https://x.com/TTrimoreau/status/2071025589574647913","text":"anyone still using Cursor?","createdAt":1782605953,"createdAtLabel":"Sun Jun 28 00:19:13 +0000 2026","language":"en","conversationId":"2071025589574647913","inReplyToStatusId":null,"quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"TTrimoreau","displayName":"Thomas Trimoreau","avatarUrl":"https://pbs.twimg.com/profile_images/2016450892006883328/8erNdoxt_normal.jpg","profileUrl":"https://x.com/TTrimoreau","verified":false,"blueVerified":true,"platformUserId":"1480815621076049920"},"metrics":{"likes":27,"retweets":1,"replies":29,"quotes":1,"views":2311,"bookmarkCount":0},"media":[],"expandedUrl":null,"isRetweet":false,"isReply":false,"isQuote":false,"source":"Twitter for iPhone"}],"page":{"nextCursor":"eyJjIjoiREFBSENnQUJITDN3SjNHX18tc0xBQUlBQUFBVE1qQTNNRFEwTmprNE5UUXhOemN5T0RJNU9BZ0FBd0FBQUFJQUFBIiwiaCI6IlRUcmltb3JlYXUiLCJsIjo0MCwiciI6ZmFsc2V9","hasMore":true}},"meta":{"requestId":"req_01example_found","creditsCharged":2,"version":"v1"}}},"empty":{"value":{"data":{"lookupStatus":"found","profile":null,"tweets":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_empty","creditsCharged":2,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","profile":null,"tweets":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01example_nf","creditsCharged":2,"version":"v1"}}}}}}},"400":{"description":"Invalid handle, 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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/search":{"get":{"tags":["Twitter"],"summary":"Search Twitter posts","description":"Search for posts on X.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":2,"normalizationFailureCredits":2},"x-socialfetch-credits-pricing":"2 credits per successful request.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":512,"description":"Search query text to run against public posts on X."},"required":true,"description":"Search query text to run against public posts on X.","name":"query","in":"query"},{"schema":{"type":"string","enum":["top","latest","people","photos","videos"],"description":"Optional search section filter. Omit to use the default `top` section."},"required":false,"description":"Optional search section filter. Omit to use the default `top` section.","name":"section","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional minimum retweet count filter."},"required":false,"description":"Optional minimum retweet count filter.","name":"minRetweets","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional minimum like count filter."},"required":false,"description":"Optional minimum like count filter.","name":"minLikes","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional minimum reply count filter."},"required":false,"description":"Optional minimum reply count filter.","name":"minReplies","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional page size. Maximum supported value is 20."},"required":false,"description":"Optional page size. Maximum supported value is 20.","name":"limit","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","enum":["en","es","fr","de","it","pt","ru","zh","ja","ko","ar","bg","hr","cs","da","nl","et","fi","el","hu","id","ga","lv","lt","no","pl","ro","sk","sl","sv","tr","uk","vi","cy","zu"],"description":"Optional language filter."},"required":false,"description":"Optional language filter.","name":"language","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":"Search results for the requested query.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for the tweet when available."},"text":{"type":"string","description":"Full tweet text when available."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"createdAtLabel":{"type":"string","nullable":true,"description":"Human-readable creation timestamp string when available."},"language":{"type":"string","nullable":true,"description":"Language code for the tweet when available."},"conversationId":{"type":"string","nullable":true,"minLength":1,"description":"Conversation identifier when supplied."},"inReplyToStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Parent post identifier when this post is a reply."},"quotedStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Quoted post identifier when this post quotes another."},"retweetTweetId":{"type":"string","nullable":true,"minLength":1,"description":"Original post identifier when this post is an engagement repost."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author handle without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown for the author."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public profile URL for the author when available."},"verified":{"type":"boolean","description":"Whether the author has legacy verification on X."},"blueVerified":{"type":"boolean","description":"Whether the author has paid blue verification on X."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","profileUrl","verified","blueVerified"],"description":"Author metadata for the tweet when available."},"metrics":{"type":"object","properties":{"likes":{"type":"integer","minimum":0,"description":"Like count."},"retweets":{"type":"integer","minimum":0,"description":"Retweet count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"quotes":{"type":"integer","minimum":0,"description":"Quote count."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"bookmarkCount":{"type":"integer","nullable":true,"minimum":0,"description":"Bookmark count when available."}},"required":["likes","retweets","replies","quotes","views","bookmarkCount"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Direct media URL when available."},"type":{"type":"string","enum":["photo","video"],"description":"Media type when Social Fetch can classify it confidently."},"thumbnailUrl":{"type":"string","minLength":1,"description":"Poster or thumbnail URL for video media when distinguishable."},"contentType":{"type":"string","minLength":1,"description":"MIME type reported for streamed media."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when supplied for streamed media."},"width":{"type":"integer","minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","minimum":0,"description":"Height in pixels when available."}},"required":["url","type"],"description":"Media attachment on a tweet."},"description":"Media attachments returned for the tweet."},"expandedUrl":{"type":"string","nullable":true,"description":"Expanded URL attached to the tweet when available."},"isRetweet":{"type":"boolean","description":"Whether the tweet is marked as a retweet."},"isReply":{"type":"boolean","default":false,"description":"Whether the tweet is a reply to another post."},"isQuote":{"type":"boolean","default":false,"description":"Whether the tweet quotes another post."},"source":{"type":"string","nullable":true,"description":"Source label such as `Twitter Web App` when available."}},"required":["id","url","text","createdAt","createdAtLabel","language","conversationId","inReplyToStatusId","quotedStatusId","retweetTweetId","author","metrics","media","expandedUrl","isRetweet","source"],"description":"A normalized Twitter post item."},"description":"Tweets returned for the requested search query."},"people":{"type":"array","items":{"type":"object","properties":{"platformUserId":{"type":"string","minLength":1,"description":"Numeric X user id as a string."},"handle":{"type":"string","nullable":true,"description":"X screen name (handle) without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown on the profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"verified":{"type":"boolean","description":"Whether X marks the profile with legacy verification (not necessarily paid blue)."},"blueVerified":{"type":"boolean","description":"Whether the account has X blue (paid) verification."},"privateAccount":{"type":"boolean","description":"Whether the account is protected (private)."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public profile URL on x.com."},"website":{"type":"string","nullable":true,"description":"Primary outbound link from the profile when provided."},"location":{"type":"string","nullable":true,"description":"Location string from the profile when provided."},"accountCreatedAt":{"type":"integer","minimum":0,"description":"Account creation time as Unix epoch seconds when derivable."},"metrics":{"type":"object","properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count from X."},"following":{"type":"integer","minimum":0,"description":"Following (friends) count from X."},"tweets":{"type":"integer","minimum":0,"description":"Total post (status) count from X."},"favourites":{"type":"integer","minimum":0,"description":"Total favourites (likes) count from X."},"listedCount":{"type":"integer","minimum":0,"description":"Listed count when X provides it."},"mediaCount":{"type":"integer","minimum":0,"description":"Media item count when X provides it."},"fastFollowersCount":{"type":"integer","minimum":0,"description":"Fast-followers count when X provides it."}},"required":["followers","following","tweets","favourites"],"description":"Aggregate profile metrics from X."}},"required":["platformUserId","handle","displayName","bio","avatarUrl","verified","blueVerified","privateAccount","profileUrl","metrics"],"description":"Profile returned for a people-section search."},"description":"Profiles returned for the requested search query."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass as `cursor` in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page can be requested."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["tweets","people","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":{"tweets":[{"id":"2055754992988926323","url":"https://x.com/Sim2Mike/status/2055754992988926323","text":"It’s clear this has been happening since 2016, when I first noticed it—like removing East Asia from API feeds to keep it out of the top 5 and unnoticed by the public discovering Coinbase. Throwing SEC cases at it. Deploying bots on social media that appeared in every discussion calling it a shitcoin and garbage, plus ad hominem attacks on anyone mentioning its use case.  Happening, for sure. And if it’s possible to keep the price low while whales are acquiring then they ARE doing it.","createdAt":1778965159,"createdAtLabel":"Sat May 16 20:59:19 +0000 2026","language":"en","conversationId":"2055652631683514731","inReplyToStatusId":"2055753642854973753","quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"Sim2Mike","displayName":"🕳️🐇","avatarUrl":"https://pbs.twimg.com/profile_images/2026405330058461184/irwZOc4G_normal.jpg","profileUrl":"https://x.com/Sim2Mike","verified":false,"blueVerified":true,"platformUserId":"1850694147096649728"},"metrics":{"likes":0,"retweets":0,"replies":1,"quotes":0,"views":24,"bookmarkCount":0},"media":[],"expandedUrl":null,"isRetweet":false,"source":"Twitter for iPhone"},{"id":"2055757659731595730","url":"https://x.com/filicroval/status/2055757659731595730","text":"interesting distribution move in the agent space this month from xAI\n\nyour X subscription now powers an open-source autonomous agent, persistent memory, 47 tools, TTS, image gen, X search, no API key.\n\nxAI just collapsed the wall between social media subscriber and agent operator","createdAt":1778965794,"createdAtLabel":"Sat May 16 21:09:54 +0000 2026","language":"en","conversationId":"2055757659731595730","inReplyToStatusId":null,"quotedStatusId":"2055748546679472322","retweetTweetId":null,"author":{"handle":"filicroval","displayName":"Filipe","avatarUrl":"https://pbs.twimg.com/profile_images/2053464202140893186/5Vgqbdlv_normal.jpg","profileUrl":"https://x.com/filicroval","verified":false,"blueVerified":true,"platformUserId":"1654513495507980290"},"metrics":{"likes":1,"retweets":0,"replies":0,"quotes":0,"views":709,"bookmarkCount":1},"media":[{"url":"https://pbs.twimg.com/media/HId8UghacAAelH8.png","type":"photo","width":1200,"height":630}],"expandedUrl":null,"isRetweet":false,"source":"Twitter Web App"},{"id":"2054236550020370831","url":"https://x.com/PrunaAI/status/2054236550020370831","text":"Pruna AI P-Image Text to Image is a fast AI image generation model that creates high-quality images from text prompts. Ready-to-use REST inference API for creative design, marketing visuals, concept art, social media content, product mockups, and image generation workflows with simple integration, no coldstarts, and affordable pricing.\n\nhttps://t.co/sCqH9XfKks","createdAt":1778603134,"createdAtLabel":"Tue May 12 16:25:34 +0000 2026","language":"en","conversationId":"2054236526054146240","inReplyToStatusId":"2054236544815227336","quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"PrunaAI","displayName":"Pruna AI","avatarUrl":"https://pbs.twimg.com/profile_images/1819385083129720832/qv8GhECE_normal.jpg","profileUrl":"https://x.com/PrunaAI","verified":false,"blueVerified":true,"platformUserId":"1647142216857419776"},"metrics":{"likes":3,"retweets":0,"replies":0,"quotes":0,"views":279,"bookmarkCount":1},"media":[],"expandedUrl":null,"isRetweet":false,"source":"Buffer"},{"id":"2044389083653324862","url":"https://x.com/socialmedia2day/status/2044389083653324862","text":"Third-party platforms will be able to facilitate a lot more Threads posting and analytics functions with this update https://t.co/F5SA0LXjpF","createdAt":1776255315,"createdAtLabel":"Wed Apr 15 12:15:15 +0000 2026","language":"en","conversationId":"2044389083653324862","inReplyToStatusId":null,"quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"socialmedia2day","displayName":"Social Media Today","avatarUrl":"https://pbs.twimg.com/profile_images/1549833169888854019/p91jxpTB_normal.jpg","profileUrl":"https://x.com/socialmedia2day","verified":false,"blueVerified":true,"platformUserId":"15441074"},"metrics":{"likes":0,"retweets":1,"replies":0,"quotes":0,"views":549,"bookmarkCount":0},"media":[],"expandedUrl":"https://www.socialmediatoday.com/news/meta-updates-threads-api-with-more-third-party-app-integration/817502/","isRetweet":false,"source":"Hootsuite Inc."},{"id":"2055803820358135858","url":"https://x.com/mertkayaai/status/2055803820358135858","text":"@tugberk @Jaaneek Hmm. Thanks a lot. If it happens to be like X api limits, it will not hold. However if @elonmusk thinks about X being the \"agentic\" social media platform it will stay","createdAt":1778976800,"createdAtLabel":"Sun May 17 00:13:20 +0000 2026","language":"en","conversationId":"2055769885406355665","inReplyToStatusId":"2055803180223488121","quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"mertkayaai","displayName":"Mert Kaya","avatarUrl":"https://pbs.twimg.com/profile_images/2047104257640341505/Pzxx2AO3_normal.jpg","profileUrl":"https://x.com/mertkayaai","verified":false,"blueVerified":true,"platformUserId":"2047104184206450688"},"metrics":{"likes":0,"retweets":0,"replies":1,"quotes":0,"views":25,"bookmarkCount":0},"media":[],"expandedUrl":null,"isRetweet":false,"source":"Twitter for iPhone"}],"people":[],"page":{"nextCursor":"eyJjIjoiREFBQ0NnQUNISWdQMnFTQUp4QUtBQU1jaUFfYXBIX1k4QWdBQkFBQUFBSUxBQVVBQUFCUVJXMVFRelozUVVGQlpsRXZaMGRLVGpCMlIzQXZRVUZCUVVGVlkyZzBTa2RPYkdONFkzaDVTSEp4TmpSV2JrRjVTRWxKWkZGcGFWZHJXVGhqV0hsRlMwOWtaa0ZRYUhsSWFFeE5ZMng0U0ZNSUFBWUFBQUFBQ0FBSEFBQUFBQXdBQ0FvQUFSeGZJUW81MThBLUFBQUEifQ","hasMore":true}},"meta":{"requestId":"req_18ee9e32-6f03-4a64-b8d9-d3841b8801fa","creditsCharged":2,"version":"v1"}}},"empty":{"value":{"data":{"tweets":[],"people":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01twittersearch_empty","creditsCharged":2,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/hashtags":{"get":{"tags":["Twitter"],"summary":"Search Twitter by hashtag","description":"Search for posts on X by hashtag.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":2,"normalizationFailureCredits":2},"x-socialfetch-credits-pricing":"2 credits per successful request.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":256,"description":"Hashtag to search for."},"required":true,"description":"Hashtag to search for.","name":"hashtag","in":"query"},{"schema":{"type":"string","enum":["top","latest","people","photos","videos"],"description":"Optional section filter for the hashtag feed. Omit to use the default `top` section."},"required":false,"description":"Optional section filter for the hashtag feed. Omit to use the default `top` section.","name":"section","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Optional page size. Maximum supported value is 20."},"required":false,"description":"Optional page size. Maximum supported value is 20.","name":"limit","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":"Posts returned for the requested hashtag.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for the tweet when available."},"text":{"type":"string","description":"Full tweet text when available."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"createdAtLabel":{"type":"string","nullable":true,"description":"Human-readable creation timestamp string when available."},"language":{"type":"string","nullable":true,"description":"Language code for the tweet when available."},"conversationId":{"type":"string","nullable":true,"minLength":1,"description":"Conversation identifier when supplied."},"inReplyToStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Parent post identifier when this post is a reply."},"quotedStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Quoted post identifier when this post quotes another."},"retweetTweetId":{"type":"string","nullable":true,"minLength":1,"description":"Original post identifier when this post is an engagement repost."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author handle without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown for the author."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public profile URL for the author when available."},"verified":{"type":"boolean","description":"Whether the author has legacy verification on X."},"blueVerified":{"type":"boolean","description":"Whether the author has paid blue verification on X."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","profileUrl","verified","blueVerified"],"description":"Author metadata for the tweet when available."},"metrics":{"type":"object","properties":{"likes":{"type":"integer","minimum":0,"description":"Like count."},"retweets":{"type":"integer","minimum":0,"description":"Retweet count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"quotes":{"type":"integer","minimum":0,"description":"Quote count."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"bookmarkCount":{"type":"integer","nullable":true,"minimum":0,"description":"Bookmark count when available."}},"required":["likes","retweets","replies","quotes","views","bookmarkCount"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Direct media URL when available."},"type":{"type":"string","enum":["photo","video"],"description":"Media type when Social Fetch can classify it confidently."},"thumbnailUrl":{"type":"string","minLength":1,"description":"Poster or thumbnail URL for video media when distinguishable."},"contentType":{"type":"string","minLength":1,"description":"MIME type reported for streamed media."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when supplied for streamed media."},"width":{"type":"integer","minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","minimum":0,"description":"Height in pixels when available."}},"required":["url","type"],"description":"Media attachment on a tweet."},"description":"Media attachments returned for the tweet."},"expandedUrl":{"type":"string","nullable":true,"description":"Expanded URL attached to the tweet when available."},"isRetweet":{"type":"boolean","description":"Whether the tweet is marked as a retweet."},"isReply":{"type":"boolean","default":false,"description":"Whether the tweet is a reply to another post."},"isQuote":{"type":"boolean","default":false,"description":"Whether the tweet quotes another post."},"source":{"type":"string","nullable":true,"description":"Source label such as `Twitter Web App` when available."}},"required":["id","url","text","createdAt","createdAtLabel","language","conversationId","inReplyToStatusId","quotedStatusId","retweetTweetId","author","metrics","media","expandedUrl","isRetweet","source"],"description":"A normalized Twitter post item."},"description":"Posts returned for the requested hashtag."},"people":{"type":"array","items":{"type":"object","properties":{"platformUserId":{"type":"string","minLength":1,"description":"Numeric X user id as a string."},"handle":{"type":"string","nullable":true,"description":"X screen name (handle) without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown on the profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"verified":{"type":"boolean","description":"Whether X marks the profile with legacy verification (not necessarily paid blue)."},"blueVerified":{"type":"boolean","description":"Whether the account has X blue (paid) verification."},"privateAccount":{"type":"boolean","description":"Whether the account is protected (private)."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public profile URL on x.com."},"website":{"type":"string","nullable":true,"description":"Primary outbound link from the profile when provided."},"location":{"type":"string","nullable":true,"description":"Location string from the profile when provided."},"accountCreatedAt":{"type":"integer","minimum":0,"description":"Account creation time as Unix epoch seconds when derivable."},"metrics":{"type":"object","properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count from X."},"following":{"type":"integer","minimum":0,"description":"Following (friends) count from X."},"tweets":{"type":"integer","minimum":0,"description":"Total post (status) count from X."},"favourites":{"type":"integer","minimum":0,"description":"Total favourites (likes) count from X."},"listedCount":{"type":"integer","minimum":0,"description":"Listed count when X provides it."},"mediaCount":{"type":"integer","minimum":0,"description":"Media item count when X provides it."},"fastFollowersCount":{"type":"integer","minimum":0,"description":"Fast-followers count when X provides it."}},"required":["followers","following","tweets","favourites"],"description":"Aggregate profile metrics from X."}},"required":["platformUserId","handle","displayName","bio","avatarUrl","verified","blueVerified","privateAccount","profileUrl","metrics"],"description":"Profile returned for a people-section search."},"description":"Profiles returned for the requested hashtag."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass as `cursor` in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page can be requested."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["tweets","people","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":{"tweets":[{"id":"1568819438144704513","url":"https://x.com/drchopperX/status/1568819438144704513","text":"USB Connection Cheat Sheet\n#infosec #CyberSecurity #Hacking #cyber #infosecurity #arduinolove #Arduin #cyberattack #Linux #MachineLearning #DataAnalytics #Computer #100DaysOfCode #100daysofcodechallenge #Python #javascript #AI #webdevelopment #embedded #hardware #raspberrypi #USB https://t.co/mwErswl2JP","createdAt":1662867075,"createdAtLabel":"Sun Sep 11 04:31:15 +0000 2022","language":"en","conversationId":null,"inReplyToStatusId":null,"quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"drchopperX","displayName":"Useful Cheat Sheets","avatarUrl":"https://pbs.twimg.com/profile_images/1443181642311417858/1iBDiOn5_normal.jpg","profileUrl":"https://x.com/drchopperX","verified":false,"blueVerified":false,"platformUserId":"730667101120270336"},"metrics":{"likes":51,"retweets":37,"replies":1,"quotes":1,"views":null,"bookmarkCount":null},"media":[],"expandedUrl":null,"isRetweet":false,"isReply":false,"isQuote":false,"source":null}],"people":[],"page":{"nextCursor":"eyJjIjoiREFBQ0N3QUJBQUFCR25Sb1IwRldWVll3VmtaV1FsbENSbTlEY3pWZlZHaHpMVGRGUzNoSldYUkJSVk5aT0V4eVFVRkJRamxFTFVGWmF6TlRPR0Z1T0VGQlFVRkdRbGhFY1ROTlZERnRRVUpHWTFnMlUyODBZV05CUVZaWVNtdEhNbXhtUVVKb1dFWnNXV3d5VjJwQlFrWmpWVTQyVVhaaFRVRkJWbmR2YkRCck1YRlJRbmhZUTJoMk1rNUdPRUZCUm1OWlVWRjNZMkZyUVVWV2VGcEVNMm94WmxGQlVsaEhSRFozT0ZkdlFVTkdZMWRRVDBFMllWVkJTVlo0YUROck1ERnhVVUZDV0VabVlYaFpWMjVCUTBaalRUbHRRM0JZYTBGTlZuaFpZbTFaVW05QlFVSllSbGxrVlcxR09VRkJSbU5aWVdzd1FXRm5RVTFXZUZwSFVsSk9iMEZCVWxoQ056VjRSakU0UVVGR1kxbGhVR3g1WVVGQlNFWkxRbFZCUmxGQlFRb0FBaFhHSHVUUWdDY1JDZ0FERmNZZTVOQl9felVJQUFRQUFBQUNDd0FGQUFBQThFVnRVRU0yZDBGQlFXWlJMMmRIU2s0d2RrZHdMMEZCUVVGQ1VWWjNOblI2UlRsYVowRlNXRVlyYTNGUFIyNUJRVVpXZVZwQ2RIQllkMEZaVm5oYVYwcGtiRzkzUVZKWVJrUmxhMHd5YWtGQlJtTkxTbVJLVG1GclFXTldkMjlpT1dwU1prRkJRbGhIUlVWTlNFZHdRVUpHWTFkUk9UUTVXREJCUlZaNFp5dHpVRVp4UVVGb1dFWnFlbWRQYld4QlEwWmpXV1ExVGs1aGEwRkJWbmhZTW5OWFJuQjNRV2hZUkZCYVozRldOVUZFUm1OWFJ6VnRSV0ZCUVVGV2VGZElWa3BvWmxGQlFsaEhSM0JPUVVkdlFVUkdZMWRTYTFWVVlVRkJSVlozWlN0alVtUm1RVUZDV0VkSGFqVmpiV2RCUWdnQUJnQUFBQUFJQUFjQUFBQUFBQUEifQ","hasMore":true}},"meta":{"requestId":"req_01example_twitter_hashtag","creditsCharged":2,"version":"v1"}}},"empty":{"value":{"data":{"tweets":[],"people":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01twitterhashtag_empty","creditsCharged":2,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/tweets/replies":{"get":{"tags":["Twitter"],"summary":"List Twitter tweet replies","description":"List replies to a tweet.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":2,"surcharges":[],"maxCredits":2,"normalizationFailureCredits":2},"x-socialfetch-credits-pricing":"2 credits per successful request.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Tweet permalink or identifier."},"required":true,"description":"Tweet permalink or identifier.","name":"url","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":"Reply posts for the requested tweet.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"replies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id."},"url":{"type":"string","nullable":true,"description":"Canonical public URL for the tweet when available."},"text":{"type":"string","description":"Full tweet text when available."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"createdAtLabel":{"type":"string","nullable":true,"description":"Human-readable creation timestamp string when available."},"language":{"type":"string","nullable":true,"description":"Language code for the tweet when available."},"conversationId":{"type":"string","nullable":true,"minLength":1,"description":"Conversation identifier when supplied."},"inReplyToStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Parent post identifier when this post is a reply."},"quotedStatusId":{"type":"string","nullable":true,"minLength":1,"description":"Quoted post identifier when this post quotes another."},"retweetTweetId":{"type":"string","nullable":true,"minLength":1,"description":"Original post identifier when this post is an engagement repost."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author handle without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown for the author."},"avatarUrl":{"type":"string","nullable":true,"description":"Profile image URL for the author when available."},"profileUrl":{"type":"string","nullable":true,"description":"Canonical public profile URL for the author when available."},"verified":{"type":"boolean","description":"Whether the author has legacy verification on X."},"blueVerified":{"type":"boolean","description":"Whether the author has paid blue verification on X."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","profileUrl","verified","blueVerified"],"description":"Author metadata for the tweet when available."},"metrics":{"type":"object","properties":{"likes":{"type":"integer","minimum":0,"description":"Like count."},"retweets":{"type":"integer","minimum":0,"description":"Retweet count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"quotes":{"type":"integer","minimum":0,"description":"Quote count."},"views":{"type":"integer","nullable":true,"minimum":0,"description":"View count when available."},"bookmarkCount":{"type":"integer","nullable":true,"minimum":0,"description":"Bookmark count when available."}},"required":["likes","retweets","replies","quotes","views","bookmarkCount"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Direct media URL when available."},"type":{"type":"string","enum":["photo","video"],"description":"Media type when Social Fetch can classify it confidently."},"thumbnailUrl":{"type":"string","minLength":1,"description":"Poster or thumbnail URL for video media when distinguishable."},"contentType":{"type":"string","minLength":1,"description":"MIME type reported for streamed media."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when supplied for streamed media."},"width":{"type":"integer","minimum":0,"description":"Width in pixels when available."},"height":{"type":"integer","minimum":0,"description":"Height in pixels when available."}},"required":["url","type"],"description":"Media attachment on a tweet."},"description":"Media attachments returned for the tweet."},"expandedUrl":{"type":"string","nullable":true,"description":"Expanded URL attached to the tweet when available."},"isRetweet":{"type":"boolean","description":"Whether the tweet is marked as a retweet."},"isReply":{"type":"boolean","default":false,"description":"Whether the tweet is a reply to another post."},"isQuote":{"type":"boolean","default":false,"description":"Whether the tweet quotes another post."},"source":{"type":"string","nullable":true,"description":"Source label such as `Twitter Web App` when available."}},"required":["id","url","text","createdAt","createdAtLabel","language","conversationId","inReplyToStatusId","quotedStatusId","retweetTweetId","author","metrics","media","expandedUrl","isRetweet","source"],"description":"A normalized Twitter post item."},"description":"Reply posts returned for the requested tweet."},"page":{"type":"object","properties":{"nextCursor":{"type":"string","nullable":true,"description":"Cursor to pass as `cursor` in the next request when another page exists."},"hasMore":{"type":"boolean","description":"Whether another page can be requested."}},"required":["nextCursor","hasMore"],"description":"Pagination information for the current response."}},"required":["replies","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":{"replies":[{"id":"1920556918868730353","url":"https://x.com/SADEX_SA1/status/1920556918868730353","text":"Riyadh, the capital city of the Kingdom of Saudi Arabia, is ready to host the Second edition of the Saudi Drone Exhibition – SADEX 2025.\n\nThis important high tech and strategic event will be taking place from 1st to 3rd September 2025, under the effective Patronage of the https://t.co/XpizThJdnq","createdAt":1746731426,"createdAtLabel":"Thu May 08 19:10:26 +0000 2025","language":"en","conversationId":"1920556918868730353","inReplyToStatusId":null,"quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"SADEX_SA1","displayName":"SADEX","avatarUrl":"https://pbs.twimg.com/profile_images/1874178954862456833/vn75PrtK_normal.jpg","profileUrl":"https://x.com/SADEX_SA1","verified":false,"blueVerified":false,"platformUserId":"1724481045939023873"},"metrics":{"likes":44,"retweets":5,"replies":0,"quotes":1,"views":null,"bookmarkCount":14},"media":[{"url":"https://pbs.twimg.com/media/GqcwRaDWEAAUo4b.jpg","type":"photo","width":4096,"height":4096}],"expandedUrl":"https://x.com/SADEX_SA1/status/1920556918868730353/photo/1","isRetweet":false,"isReply":false,"isQuote":false,"source":null},{"id":"1924697596989472901","url":"https://x.com/grok/status/1924697596989472901","text":"@indragohil @teslaownersSV xAI's Colossus 2 AI data center in Memphis reportedly uses Tesla Megapacks for power stability, with claims of 168 units, though this lacks confirmation. Each Megapack provides 1.5 MW, suggesting around 100 units for the reported 150 MW capacity. They ensure reliable power for","createdAt":1747718640,"createdAtLabel":"Tue May 20 05:24:00 +0000 2025","language":"en","conversationId":"1924684020107116709","inReplyToStatusId":"1924696723349225979","quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"grok","displayName":"Grok","avatarUrl":"https://pbs.twimg.com/profile_images/1893219113717342208/Vgg2hEPa_normal.jpg","profileUrl":"https://x.com/grok","verified":false,"blueVerified":false,"platformUserId":"1720665183188922368"},"metrics":{"likes":91,"retweets":15,"replies":11,"quotes":3,"views":null,"bookmarkCount":10},"media":[],"expandedUrl":null,"isRetweet":false,"isReply":true,"isQuote":false,"source":null},{"id":"1924686377696035284","url":"https://x.com/BenPott19395132/status/1924686377696035284","text":"@teslaownersSV where is this location","createdAt":1747715966,"createdAtLabel":"Tue May 20 04:39:26 +0000 2025","language":"en","conversationId":"1924684020107116709","inReplyToStatusId":"1924684020107116709","quotedStatusId":null,"retweetTweetId":null,"author":{"handle":"BenPott19395132","displayName":"Ben Potter","avatarUrl":"https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png","profileUrl":"https://x.com/BenPott19395132","verified":false,"blueVerified":false,"platformUserId":"1585959430323318784"},"metrics":{"likes":7,"retweets":0,"replies":1,"quotes":0,"views":null,"bookmarkCount":0},"media":[],"expandedUrl":null,"isRetweet":false,"isReply":true,"isQuote":false,"source":null}],"page":{"nextCursor":"eyJjIjoiWkFBQUFQQlZIQm1tLUlhd29mN1U5N1UxNG9lM2dmT1ZtS2MxOW9lMi1aM2U4clUxNnNleHhhemMwYmMxeElYWWthaTA4clUxd0lhN3ZkMmpfN1kxa0lMVGtlZUdvN1kxcUlmWTZZU0U3clUxNm9MWS1hcXc5TFUxc01lOGlkNjI3N1UxSlFJU0ZRUUFBQSJ9","hasMore":true}},"meta":{"requestId":"req_01example_twitter_tweet_replies","creditsCharged":2,"version":"v1"}}},"empty":{"value":{"data":{"replies":[],"page":{"nextCursor":null,"hasMore":false}},"meta":{"requestId":"req_01twittertweetreplies_empty","creditsCharged":2,"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/tweets":{"get":{"tags":["Twitter"],"summary":"Get Twitter tweet","description":"Get a single tweet.","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":"Tweet permalink or identifier."},"required":true,"description":"Tweet permalink or identifier.","name":"url","in":"query"},{"schema":{"type":"boolean","description":"Optional: omit author profile and tweet `core` for a smaller response."},"required":false,"description":"Optional: omit author profile and tweet `core` for a smaller response.","name":"trim","in":"query"}],"responses":{"200":{"description":"Tweet details when available. 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 tweet was found or unavailable."},"author":{"type":"object","nullable":true,"properties":{"profile":{"type":"object","properties":{"platform":{"type":"string","enum":["twitter"],"description":"Social platform for this profile."},"handle":{"type":"string","description":"X screen name (handle) without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Display name shown on the profile."},"bio":{"type":"string","nullable":true,"description":"Profile biography text."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar image URL."},"bannerUrl":{"type":"string","nullable":true,"description":"Profile banner image URL when available."},"verified":{"type":"boolean","description":"Whether X marks the profile with legacy verification (not necessarily paid blue)."},"blueVerified":{"type":"boolean","description":"Whether the account has X blue (paid) verification."},"profileUrl":{"type":"string","minLength":1,"description":"Canonical public profile URL on x.com."},"privateAccount":{"type":"boolean","description":"Whether the account is protected (private)."},"platformUserId":{"type":"string","description":"Numeric X user id (`rest_id`) as a string."},"accountCreatedAt":{"type":"integer","minimum":0,"description":"Account creation time as Unix epoch seconds when derivable."},"location":{"type":"string","nullable":true,"description":"Location string from the profile when provided."},"website":{"type":"string","nullable":true,"description":"Primary outbound link (expanded URL) from the profile."},"pinnedTweetId":{"type":"string","description":"Pinned tweet id when X exposes one."},"verificationInfo":{"type":"object","properties":{"isIdentityVerified":{"type":"boolean","description":"Whether X marks the account as identity-verified."},"verifiedSinceMsec":{"type":"string","description":"When verification became effective, as milliseconds since epoch (string from X)."},"reason":{"type":"object","properties":{"text":{"type":"string","description":"Human-readable verification reason text from X."},"entities":{"type":"array","items":{"nullable":true},"description":"Inline entity metadata for the reason text (vendor-defined)."}},"description":"Verification reason payload when X provides it."}},"required":["isIdentityVerified"],"description":"Structured verification metadata from X."},"tipJar":{"type":"object","properties":{"isEnabled":{"type":"boolean","description":"Whether the X tip jar is enabled."},"handles":{"type":"object","properties":{"bandcamp":{"type":"string","description":"Bandcamp handle from tip jar."},"bitcoin":{"type":"string","description":"Bitcoin address or handle."},"cashApp":{"type":"string","description":"Cash App handle."},"ethereum":{"type":"string","description":"Ethereum address or handle."},"goFundMe":{"type":"string","description":"GoFundMe handle."},"patreon":{"type":"string","description":"Patreon handle."},"payPal":{"type":"string","description":"PayPal handle."},"venmo":{"type":"string","description":"Venmo handle."}},"description":"Per-service handles when any are present."}},"required":["isEnabled"],"description":"Tip jar configuration when present."},"highlights":{"type":"object","properties":{"canHighlightTweets":{"type":"boolean","description":"Whether the account may highlight tweets on the profile."},"highlightedTweetCount":{"type":"integer","minimum":0,"description":"Count of highlighted tweets when reported by X."}},"required":["canHighlightTweets","highlightedTweetCount"],"description":"Tweet highlights metadata when present."},"businessAccount":{"type":"object","additionalProperties":{"nullable":true},"description":"Opaque business-account payload from X when non-empty (vendor-defined)."},"creatorSubscriptionsCount":{"type":"integer","minimum":0,"description":"Creator subscriptions count when X reports it."},"affiliateLabel":{"type":"object","properties":{"description":{"type":"string","description":"Affiliate or business label text shown on the profile."},"badgeUrl":{"type":"string","description":"Badge image URL when X provides one."},"url":{"type":"string","description":"Destination URL for the label link."}},"required":["description"],"description":"Affiliate or business label when X provides one."}},"required":["platform","handle","displayName","bio","avatarUrl","verified","blueVerified","profileUrl","privateAccount"],"description":"Profile fields for the tweet author."},"metrics":{"type":"object","properties":{"followers":{"type":"integer","minimum":0,"description":"Follower count from X."},"following":{"type":"integer","minimum":0,"description":"Following (friends) count from X."},"tweets":{"type":"integer","minimum":0,"description":"Total post (status) count from X."},"favourites":{"type":"integer","minimum":0,"description":"Total favourites (likes) count from X."},"listedCount":{"type":"integer","minimum":0,"description":"Listed count when X provides it."},"mediaCount":{"type":"integer","minimum":0,"description":"Media item count when X provides it."},"fastFollowersCount":{"type":"integer","minimum":0,"description":"Fast-followers count when X provides it."}},"required":["followers","following","tweets","favourites"],"description":"Aggregate counts for the tweet author."}},"required":["profile","metrics"],"description":"Author profile and metrics when not trimmed; null when `trim=true` or when not found."},"tweet":{"type":"object","nullable":true,"properties":{"id":{"type":"string","minLength":1,"description":"Tweet id (`rest_id`)."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this tweet on x.com."},"conversationId":{"type":"string","minLength":1,"description":"Conversation root tweet id."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"language":{"type":"string","minLength":1,"description":"BCP 47 or X language code."},"text":{"type":"string","description":"Full tweet text (includes long-form when available)."},"isLongForm":{"type":"boolean","description":"True when text was taken from note_tweet metadata instead of legacy.full_text alone."},"displayTextRange":{"type":"array","items":{"type":"integer","minimum":0},"minItems":2,"maxItems":2,"description":"Start/end character indices for visible text."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"Impression count when reported by X."},"favorites":{"type":"integer","minimum":0,"description":"Favorite (like) count."},"retweets":{"type":"integer","minimum":0,"description":"Native repost count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"bookmarks":{"type":"integer","minimum":0,"description":"Bookmark count."},"quotes":{"type":"integer","minimum":0,"description":"Quote tweet count."}},"required":["views","favorites","retweets","replies","bookmarks","quotes"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","enum":["photo"]},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the media asset."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo"],"description":"Photo attachment on a tweet."},{"type":"object","properties":{"type":{"type":"string","enum":["video","animated_gif"],"description":"Video or MP4-based animated GIF."},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the poster or media."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."},"variants":{"type":"array","items":{"type":"object","properties":{"contentType":{"type":"string","minLength":1,"description":"MIME type of the variant."},"url":{"type":"string","minLength":1,"description":"Direct URL for this variant."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when present (omitted for HLS)."}},"required":["contentType","url"],"description":"A downloadable or streamable media variant."},"minItems":1,"description":"Stream or download variants (mp4, HLS, etc.)."},"durationMs":{"type":"integer","minimum":0,"description":"Duration in milliseconds when known."},"aspectRatio":{"type":"array","items":{"type":"integer","minimum":0,"exclusiveMinimum":true},"minItems":2,"maxItems":2,"description":"Width:height ratio tuple when provided by X."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo","variants"],"description":"Video or animated GIF attachment."}]},"description":"Photo, video, or GIF attachments."},"entities":{"type":"object","properties":{"hashtags":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Hashtag text without #."}},"required":["text"],"description":"A hashtag entity."},"description":"Hashtag entities."},"userMentions":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Mentioned screen name."},"displayName":{"type":"string","description":"Display name when available."},"platformUserId":{"type":"string","description":"Numeric user id for the mention when available."}},"required":["handle"],"description":"A user mention entity."},"description":"User mention entities."},"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Short URL as it appears in text."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable display host/path."},"expandedUrl":{"type":"string","minLength":1,"description":"Fully expanded destination URL."}},"required":["url","displayUrl","expandedUrl"],"description":"A URL entity."},"description":"URL entities."},"symbols":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Cashtag or symbol text."}},"required":["text"],"description":"A symbol/cashtag entity."},"description":"Symbol entities."}},"required":["hashtags","userMentions","urls","symbols"],"description":"Entities aligned with `text`."},"isReply":{"type":"boolean","description":"Whether this is a reply."},"inReplyToTweetId":{"type":"string","description":"Parent tweet id when replying."},"inReplyToUserId":{"type":"string","description":"Parent author user id when replying."},"inReplyToScreenName":{"type":"string","description":"Parent author handle when replying."},"isQuote":{"type":"boolean","description":"Whether this tweet quotes another."},"quotedTweetId":{"type":"string","description":"Quoted tweet id when present."},"isRetweet":{"type":"boolean","description":"Whether this is a native repost."},"retweetedTweetId":{"type":"string","description":"Original tweet id for a repost."},"possiblySensitive":{"type":"boolean","description":"Whether X marks the content sensitive."},"editInfo":{"type":"object","properties":{"editTweetIds":{"type":"array","items":{"type":"string","minLength":1},"description":"Tweet ids in this edit chain."},"editableUntilMsec":{"type":"string","description":"Epoch milliseconds until edits are locked."},"isEditEligible":{"type":"boolean","description":"Whether the tweet can still be edited."},"editsRemaining":{"type":"string","description":"Remaining edits in the window, as reported by X."}},"required":["editTweetIds","editableUntilMsec","isEditEligible","editsRemaining"],"description":"Edit metadata when applicable."},"source":{"type":"string","description":"Client label text."},"sourceUrl":{"type":"string","description":"Link target from the source anchor when present."},"quotedTweet":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id (`rest_id`)."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this tweet on x.com."},"conversationId":{"type":"string","minLength":1,"description":"Conversation root tweet id."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"language":{"type":"string","minLength":1,"description":"BCP 47 or X language code."},"text":{"type":"string","description":"Full tweet text (includes long-form when available)."},"isLongForm":{"type":"boolean","description":"True when text was taken from note_tweet metadata instead of legacy.full_text alone."},"displayTextRange":{"type":"array","items":{"type":"integer","minimum":0},"minItems":2,"maxItems":2,"description":"Start/end character indices for visible text."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author screen name without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Author display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar URL for the author."},"verified":{"type":"boolean","description":"Whether X marks the author with legacy verification."},"blueVerified":{"type":"boolean","description":"Whether the author has X blue (paid) verification."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","verified","blueVerified"],"description":"Author snapshot when available."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"Impression count when reported by X."},"favorites":{"type":"integer","minimum":0,"description":"Favorite (like) count."},"retweets":{"type":"integer","minimum":0,"description":"Native repost count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"bookmarks":{"type":"integer","minimum":0,"description":"Bookmark count."},"quotes":{"type":"integer","minimum":0,"description":"Quote tweet count."}},"required":["views","favorites","retweets","replies","bookmarks","quotes"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","enum":["photo"]},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the media asset."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo"],"description":"Photo attachment on a tweet."},{"type":"object","properties":{"type":{"type":"string","enum":["video","animated_gif"],"description":"Video or MP4-based animated GIF."},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the poster or media."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."},"variants":{"type":"array","items":{"type":"object","properties":{"contentType":{"type":"string","minLength":1,"description":"MIME type of the variant."},"url":{"type":"string","minLength":1,"description":"Direct URL for this variant."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when present (omitted for HLS)."}},"required":["contentType","url"],"description":"A downloadable or streamable media variant."},"minItems":1,"description":"Stream or download variants (mp4, HLS, etc.)."},"durationMs":{"type":"integer","minimum":0,"description":"Duration in milliseconds when known."},"aspectRatio":{"type":"array","items":{"type":"integer","minimum":0,"exclusiveMinimum":true},"minItems":2,"maxItems":2,"description":"Width:height ratio tuple when provided by X."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo","variants"],"description":"Video or animated GIF attachment."}]},"description":"Photo, video, or GIF attachments."},"entities":{"type":"object","properties":{"hashtags":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Hashtag text without #."}},"required":["text"],"description":"A hashtag entity."},"description":"Hashtag entities."},"userMentions":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Mentioned screen name."},"displayName":{"type":"string","description":"Display name when available."},"platformUserId":{"type":"string","description":"Numeric user id for the mention when available."}},"required":["handle"],"description":"A user mention entity."},"description":"User mention entities."},"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Short URL as it appears in text."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable display host/path."},"expandedUrl":{"type":"string","minLength":1,"description":"Fully expanded destination URL."}},"required":["url","displayUrl","expandedUrl"],"description":"A URL entity."},"description":"URL entities."},"symbols":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Cashtag or symbol text."}},"required":["text"],"description":"A symbol/cashtag entity."},"description":"Symbol entities."}},"required":["hashtags","userMentions","urls","symbols"],"description":"Entities aligned with `text`."},"isReply":{"type":"boolean","description":"Whether this is a reply."},"inReplyToTweetId":{"type":"string","description":"Parent tweet id when replying."},"inReplyToUserId":{"type":"string","description":"Parent author user id when replying."},"inReplyToScreenName":{"type":"string","description":"Parent author handle when replying."},"isQuote":{"type":"boolean","description":"Whether this tweet quotes another."},"quotedTweetId":{"type":"string","description":"Quoted tweet id when present."},"isRetweet":{"type":"boolean","description":"Whether this is a native repost."},"retweetedTweetId":{"type":"string","description":"Original tweet id for a repost."},"possiblySensitive":{"type":"boolean","description":"Whether X marks the content sensitive."},"editInfo":{"type":"object","properties":{"editTweetIds":{"type":"array","items":{"type":"string","minLength":1},"description":"Tweet ids in this edit chain."},"editableUntilMsec":{"type":"string","description":"Epoch milliseconds until edits are locked."},"isEditEligible":{"type":"boolean","description":"Whether the tweet can still be edited."},"editsRemaining":{"type":"string","description":"Remaining edits in the window, as reported by X."}},"required":["editTweetIds","editableUntilMsec","isEditEligible","editsRemaining"],"description":"Edit metadata when applicable."},"source":{"type":"string","description":"Client label text."},"sourceUrl":{"type":"string","description":"Link target from the source anchor when present."}},"required":["id","url","conversationId","createdAt","language","text","isLongForm","displayTextRange","author","metrics","media","entities","isReply","isQuote","isRetweet","possiblySensitive"],"description":"Quoted tweet expanded one level (no further nesting on this field)."}},"required":["id","url","conversationId","createdAt","language","text","isLongForm","displayTextRange","metrics","media","entities","isReply","isQuote","isRetweet","possiblySensitive"],"description":"Tweet body, metrics, and optional quoted tweet; null when not found."}},"required":["lookupStatus","author","tweet"],"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","author":{"profile":{"platform":"twitter","handle":"elonmusk","displayName":"Elon Musk","bio":"https://t.co/dDtDyVssfm","avatarUrl":"https://pbs.twimg.com/profile_images/2053244804520427520/m8mdWZCG_400x400.jpg","bannerUrl":"https://pbs.twimg.com/profile_banners/44196397/1774145451","verified":false,"blueVerified":true,"profileUrl":"https://x.com/elonmusk","privateAccount":false,"platformUserId":"44196397","accountCreatedAt":1243973549,"location":null,"website":null,"pinnedTweetId":"2055294612751991090","affiliateLabel":{"description":"X","badgeUrl":"https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg","url":"https://twitter.com/X"}},"metrics":{"followers":239969612,"following":1332,"tweets":102641,"favourites":227796,"listedCount":169024,"mediaCount":4489,"fastFollowersCount":0}},"tweet":{"id":"2044683867630833961","url":"https://x.com/elonmusk/status/2044683867630833961","conversationId":"2044683867630833961","createdAt":1776325597,"language":"en","text":"Look at the tiny cars in the foreground to get a sense of the vastness of the building","isLongForm":false,"displayTextRange":[0,86],"metrics":{"views":21703034,"favorites":41905,"retweets":4590,"replies":2809,"bookmarks":1371,"quotes":94},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":true,"quotedTweetId":"2044505822533705783","isRetweet":false,"possiblySensitive":false,"editInfo":{"editTweetIds":["2044683867630833961"],"editableUntilMsec":"1776329197000","isEditEligible":true,"editsRemaining":"5"},"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone","quotedTweet":{"id":"2044505822533705783","url":"https://x.com/HalcyonHypnotic/status/2044505822533705783","conversationId":"2044505822533705783","createdAt":1776283147,"language":"en","text":"Hot take but SpaceX is probably the best civil engineering company in the world. Somehow they are able to make these insanely complex ground system and building designs and find the perfect contractors and technicians to build out their ideas in months or 1-2 years. \n\nI feel like we need the SpaceX methodology and their contractors across many projects. If we did we could probably have gotten so much done and in a much higher quality. \n\nThey say you can’t have fast, cheap, and good, but somehow SpaceX always manages to deliver on all 3.","isLongForm":true,"displayTextRange":[0,280],"author":{"handle":"HalcyonHypnotic","displayName":"Hypnotic","avatarUrl":"https://pbs.twimg.com/profile_images/1991801809845866496/XZ_Qu9m1_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1028515474710114305"},"metrics":{"views":22906734,"favorites":16027,"retweets":1462,"replies":859,"bookmarks":1195,"quotes":115},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":true,"quotedTweetId":"2044497016298918073","isRetweet":false,"possiblySensitive":false,"editInfo":{"editTweetIds":["2044505822533705783"],"editableUntilMsec":"1776286747000","isEditEligible":false,"editsRemaining":"5"},"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"}}},"meta":{"requestId":"req_498736a9-e0e8-4adc-9100-a59e8bbcd452","creditsCharged":1,"version":"v1"}}},"found_trimmed":{"value":{"data":{"lookupStatus":"found","author":null,"tweet":{"id":"2044683867630833961","url":"https://x.com/i/status/2044683867630833961","conversationId":"2044683867630833961","createdAt":1745784397,"language":"en","text":"Look at the tiny cars in the foreground to get a sense of the vastness of the building","isLongForm":false,"displayTextRange":[0,86],"metrics":{"views":12708412,"favorites":30931,"retweets":3097,"replies":2215,"bookmarks":945,"quotes":71},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":true,"quotedTweetId":"2044505822533705783","isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"}},"meta":{"requestId":"req_01example_trim","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","author":null,"tweet":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/tweets/transcript":{"get":{"tags":["Twitter"],"summary":"Get Twitter tweet transcript","description":"Get the transcript for a video tweet.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":1,"surcharges":[],"maxCredits":1,"normalizationFailureCredits":1},"x-socialfetch-credits-pricing":"1 credit per successful request.","x-socialfetch-agent-hints":{"disambiguation":"For video tweets only. Responses can take longer than typical lookups. Videos longer than about two minutes cannot be transcribed."},"parameters":[{"schema":{"type":"string","minLength":1,"maxLength":4096,"description":"Tweet permalink or identifier."},"required":true,"description":"Tweet permalink or identifier.","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."},"tweet":{"type":"object","nullable":true,"properties":{"url":{"type":"string","minLength":1,"description":"Public URL of the tweet that was requested (same as the lookup input)."}},"required":["url"],"description":"Tweet 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","tweet","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","tweet":{"url":"https://x.com/TheoVon/status/1916982720317821050"},"transcript":"Since you're kind of like a leader in innovation and technology in our world, you know. Um, do you how do you know that what your convictions are, how do you gauge if what your convictions are are the best for everybody kind of like how do you kind of figure that out, you know. It seems like such a challenge. I mean look at the end of the day, um, there's still a lot of options of things that people can do, just because I build something doesn't mean that people are going to use it. Actually a lot of things that I build, like, some of, some of them work, some of them don't, and like I think part of the reason why the company has been successful is because you know, maybe we have a slightly higher hit rate of things working than others, but if we do something that doesn't work, then in general, people aren't going to use it and then the future doesn't go in that direction, so I see. So you're saying it's up to the user more. Yeah, I mean, look, it's always served me well to generally have faith in people and believe that people are smart and can make good decisions for themselves. And whenever we try to like adopt some sort of like attitude of, \"Oh, we must know better than them.\" It's like we're like, we're the people building technology, that's when you lose. So I I I tend to just think that at the end of the day, yeah, I mean I I think people are smarter than than a lot of people think and I think ultimately drive the direction that society goes in."},"meta":{"requestId":"req_8e2c7567-6df6-4f70-ba3f-f6ec61e9d6a1","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","tweet":null,"transcript":null},"meta":{"requestId":"req_01example_nf","creditsCharged":1,"version":"v1"}}},"no_transcript":{"value":{"data":{"lookupStatus":"found","tweet":{"url":"https://x.com/TheoVon/status/1916982720317821050"},"transcript":null},"meta":{"requestId":"req_01example_null","creditsCharged":1,"version":"v1"}}},"lookup_failed":{"value":{"data":{"lookupStatus":"lookup_failed","tweet":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/communities":{"get":{"tags":["Twitter"],"summary":"Get Twitter community","description":"Get details for an X community.","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":"Community URL to look up."},"required":true,"description":"Community URL to look up.","name":"url","in":"query"}],"responses":{"200":{"description":"Community details when available. 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 community was found."},"community":{"type":"object","nullable":true,"properties":{"platform":{"type":"string","enum":["twitter"],"description":"Social platform for this community."},"id":{"type":"string","minLength":1,"description":"Numeric community identifier as a string."},"url":{"type":"string","minLength":1,"description":"Canonical public community URL on x.com."},"name":{"type":"string","minLength":1,"description":"Community display name."},"description":{"type":"string","nullable":true,"description":"Short description text when available."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch milliseconds."},"memberCount":{"type":"integer","minimum":0,"description":"Approximate member count."},"isNsfw":{"type":"boolean","description":"Whether the community is marked as sensitive."},"joinPolicy":{"type":"string","enum":["open","restricted"],"description":"Who can join this community."},"primaryTopic":{"type":"string","nullable":true,"description":"Primary topic label when available."},"bannerImageUrl":{"type":"string","nullable":true,"description":"Banner image URL when available."},"creator":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Creator screen name without the leading @."},"verified":{"type":"boolean","description":"Whether X marks the creator with legacy verification."},"blueVerified":{"type":"boolean","description":"Whether the creator has X blue (paid) verification."}},"required":["handle","verified","blueVerified"],"description":"Creator handle and verification flags when available."},"rules":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Stable rule identifier."},"name":{"type":"string","minLength":1,"description":"Short rule title."},"description":{"type":"string","nullable":true,"description":"Longer rule explanation when provided."}},"required":["id","name","description"],"description":"A published community rule."},"description":"Published community rules."},"memberFacepileAvatarUrls":{"type":"array","items":{"type":"string","minLength":1},"description":"Recent member avatar image URLs shown in the community preview."},"trendingHashtags":{"type":"array","items":{"type":"string","minLength":1},"description":"Trending hashtags associated with this community when available."}},"required":["platform","id","url","name","description","createdAt","memberCount","isNsfw","joinPolicy","primaryTopic","bannerImageUrl","creator","rules","memberFacepileAvatarUrls","trendingHashtags"],"description":"Community details when available."}},"required":["lookupStatus","community"],"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","community":{"platform":"twitter","id":"1493446837214187523","url":"https://x.com/i/communities/1493446837214187523","name":"Build in Public","description":"Share what you're working on. Get feedback. Help each other move forward. – Sponsored by bolt.new ⚡","createdAt":1644900447551,"memberCount":257599,"isNsfw":false,"joinPolicy":"open","primaryTopic":"Entrepreneurship","bannerImageUrl":"https://pbs.twimg.com/community_banner_img/1915033378811772928/KdaKUaRP?format=png&name=orig","creator":{"handle":"marckohlbrugge","verified":false,"blueVerified":true},"rules":[{"id":"1493447542045958144","name":"Share what you're working on","description":"Don't be scared to share unfinished work"},{"id":"1493448150169755648","name":"Screenshots, screencasts, drafts, etc","description":"Visual tweets tend to grab people's attention"},{"id":"1836095088465781029","name":"No self-promotion","description":"Don't ask for upvotes or advertise your products/services."},{"id":"1836095194716066104","name":"Stay on-topic","description":"Only post about building in public. No politics or other off-topic posts. There are other communities for that."},{"id":"1836095002557944207","name":"No engagement farming","description":"If your goal is to get replies, likes, etc, don’t post it here. Don’t ask super generic questions like “what’s everyone working on?”"},{"id":"1836094745590059481","name":"Use a personal account","description":"No company accounts. No logos. Use your own name. No promotion or URLs in your name."}],"memberFacepileAvatarUrls":["https://pbs.twimg.com/profile_images/1857124042433572864/iMivVaYP_normal.jpg","https://pbs.twimg.com/profile_images/1142795908221952001/QdBqHhdn_normal.jpg","https://pbs.twimg.com/profile_images/1416201794200477700/Kasb_zJv_normal.jpg","https://pbs.twimg.com/profile_images/1873286532947427330/y1Y8f660_normal.jpg","https://pbs.twimg.com/profile_images/1795602079073046529/-sxJWrIq_normal.jpg"],"trendingHashtags":["#design","#code","#marketing","#sales","#ai","#milestone","#requestforfeedback","#launch"]}},"meta":{"requestId":"req_ac3c13d7-bc45-4f31-a4ac-697256889d89","creditsCharged":1,"version":"v1"}}},"found_restricted":{"value":{"data":{"lookupStatus":"found","community":{"platform":"twitter","id":"1453811010935001090","url":"https://x.com/i/communities/1453811010935001090","name":"The Entrepreneurship Community","description":"A community for both aspiring and current entrepreneurs.","createdAt":1635450530170,"memberCount":430,"isNsfw":false,"joinPolicy":"restricted","primaryTopic":null,"bannerImageUrl":"https://pbs.twimg.com/list_banner_img/example.png","creator":{"handle":"harleyf","verified":false,"blueVerified":true},"rules":[{"id":"1453811497495248897","name":"Be kind.","description":"It's simple. No discrimination, no hate, no put-downs. Be kind."}],"memberFacepileAvatarUrls":["https://pbs.twimg.com/profile_images/example2_normal.jpg"],"trendingHashtags":[]}},"meta":{"requestId":"req_01example_r","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","community":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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/twitter/communities/tweets":{"get":{"tags":["Twitter"],"summary":"List Twitter community tweets","description":"Get tweets from an X community.","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":"Community URL to look up."},"required":true,"description":"Community URL to look up.","name":"url","in":"query"}],"responses":{"200":{"description":"Tweets for the requested community. Use `data.lookupStatus` to distinguish `found` vs `not_found`. A `found` result may still include an empty `data.tweets` array.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found"],"description":"Whether tweet data was returned for this community."},"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id (`rest_id`)."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this tweet on x.com."},"conversationId":{"type":"string","minLength":1,"description":"Conversation root tweet id."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"language":{"type":"string","minLength":1,"description":"BCP 47 or X language code."},"text":{"type":"string","description":"Full tweet text (includes long-form when available)."},"isLongForm":{"type":"boolean","description":"True when text was taken from note_tweet metadata instead of legacy.full_text alone."},"displayTextRange":{"type":"array","items":{"type":"integer","minimum":0},"minItems":2,"maxItems":2,"description":"Start/end character indices for visible text."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author screen name without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Author display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar URL for the author."},"verified":{"type":"boolean","description":"Whether X marks the author with legacy verification."},"blueVerified":{"type":"boolean","description":"Whether the author has X blue (paid) verification."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","verified","blueVerified"],"description":"Author snapshot when available."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"Impression count when reported by X."},"favorites":{"type":"integer","minimum":0,"description":"Favorite (like) count."},"retweets":{"type":"integer","minimum":0,"description":"Native repost count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"bookmarks":{"type":"integer","minimum":0,"description":"Bookmark count."},"quotes":{"type":"integer","minimum":0,"description":"Quote tweet count."}},"required":["views","favorites","retweets","replies","bookmarks","quotes"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","enum":["photo"]},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the media asset."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo"],"description":"Photo attachment on a tweet."},{"type":"object","properties":{"type":{"type":"string","enum":["video","animated_gif"],"description":"Video or MP4-based animated GIF."},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the poster or media."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."},"variants":{"type":"array","items":{"type":"object","properties":{"contentType":{"type":"string","minLength":1,"description":"MIME type of the variant."},"url":{"type":"string","minLength":1,"description":"Direct URL for this variant."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when present (omitted for HLS)."}},"required":["contentType","url"],"description":"A downloadable or streamable media variant."},"minItems":1,"description":"Stream or download variants (mp4, HLS, etc.)."},"durationMs":{"type":"integer","minimum":0,"description":"Duration in milliseconds when known."},"aspectRatio":{"type":"array","items":{"type":"integer","minimum":0,"exclusiveMinimum":true},"minItems":2,"maxItems":2,"description":"Width:height ratio tuple when provided by X."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo","variants"],"description":"Video or animated GIF attachment."}]},"description":"Photo, video, or GIF attachments."},"entities":{"type":"object","properties":{"hashtags":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Hashtag text without #."}},"required":["text"],"description":"A hashtag entity."},"description":"Hashtag entities."},"userMentions":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Mentioned screen name."},"displayName":{"type":"string","description":"Display name when available."},"platformUserId":{"type":"string","description":"Numeric user id for the mention when available."}},"required":["handle"],"description":"A user mention entity."},"description":"User mention entities."},"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Short URL as it appears in text."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable display host/path."},"expandedUrl":{"type":"string","minLength":1,"description":"Fully expanded destination URL."}},"required":["url","displayUrl","expandedUrl"],"description":"A URL entity."},"description":"URL entities."},"symbols":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Cashtag or symbol text."}},"required":["text"],"description":"A symbol/cashtag entity."},"description":"Symbol entities."}},"required":["hashtags","userMentions","urls","symbols"],"description":"Entities aligned with `text`."},"isReply":{"type":"boolean","description":"Whether this is a reply."},"inReplyToTweetId":{"type":"string","description":"Parent tweet id when replying."},"inReplyToUserId":{"type":"string","description":"Parent author user id when replying."},"inReplyToScreenName":{"type":"string","description":"Parent author handle when replying."},"isQuote":{"type":"boolean","description":"Whether this tweet quotes another."},"quotedTweetId":{"type":"string","description":"Quoted tweet id when present."},"isRetweet":{"type":"boolean","description":"Whether this is a native repost."},"retweetedTweetId":{"type":"string","description":"Original tweet id for a repost."},"possiblySensitive":{"type":"boolean","description":"Whether X marks the content sensitive."},"editInfo":{"type":"object","properties":{"editTweetIds":{"type":"array","items":{"type":"string","minLength":1},"description":"Tweet ids in this edit chain."},"editableUntilMsec":{"type":"string","description":"Epoch milliseconds until edits are locked."},"isEditEligible":{"type":"boolean","description":"Whether the tweet can still be edited."},"editsRemaining":{"type":"string","description":"Remaining edits in the window, as reported by X."}},"required":["editTweetIds","editableUntilMsec","isEditEligible","editsRemaining"],"description":"Edit metadata when applicable."},"source":{"type":"string","description":"Client label text."},"sourceUrl":{"type":"string","description":"Link target from the source anchor when present."},"quotedTweet":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id (`rest_id`)."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this tweet on x.com."},"conversationId":{"type":"string","minLength":1,"description":"Conversation root tweet id."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"language":{"type":"string","minLength":1,"description":"BCP 47 or X language code."},"text":{"type":"string","description":"Full tweet text (includes long-form when available)."},"isLongForm":{"type":"boolean","description":"True when text was taken from note_tweet metadata instead of legacy.full_text alone."},"displayTextRange":{"type":"array","items":{"type":"integer","minimum":0},"minItems":2,"maxItems":2,"description":"Start/end character indices for visible text."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author screen name without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Author display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar URL for the author."},"verified":{"type":"boolean","description":"Whether X marks the author with legacy verification."},"blueVerified":{"type":"boolean","description":"Whether the author has X blue (paid) verification."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","verified","blueVerified"],"description":"Author snapshot when available."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"Impression count when reported by X."},"favorites":{"type":"integer","minimum":0,"description":"Favorite (like) count."},"retweets":{"type":"integer","minimum":0,"description":"Native repost count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"bookmarks":{"type":"integer","minimum":0,"description":"Bookmark count."},"quotes":{"type":"integer","minimum":0,"description":"Quote tweet count."}},"required":["views","favorites","retweets","replies","bookmarks","quotes"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","enum":["photo"]},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the media asset."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo"],"description":"Photo attachment on a tweet."},{"type":"object","properties":{"type":{"type":"string","enum":["video","animated_gif"],"description":"Video or MP4-based animated GIF."},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the poster or media."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."},"variants":{"type":"array","items":{"type":"object","properties":{"contentType":{"type":"string","minLength":1,"description":"MIME type of the variant."},"url":{"type":"string","minLength":1,"description":"Direct URL for this variant."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when present (omitted for HLS)."}},"required":["contentType","url"],"description":"A downloadable or streamable media variant."},"minItems":1,"description":"Stream or download variants (mp4, HLS, etc.)."},"durationMs":{"type":"integer","minimum":0,"description":"Duration in milliseconds when known."},"aspectRatio":{"type":"array","items":{"type":"integer","minimum":0,"exclusiveMinimum":true},"minItems":2,"maxItems":2,"description":"Width:height ratio tuple when provided by X."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo","variants"],"description":"Video or animated GIF attachment."}]},"description":"Photo, video, or GIF attachments."},"entities":{"type":"object","properties":{"hashtags":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Hashtag text without #."}},"required":["text"],"description":"A hashtag entity."},"description":"Hashtag entities."},"userMentions":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Mentioned screen name."},"displayName":{"type":"string","description":"Display name when available."},"platformUserId":{"type":"string","description":"Numeric user id for the mention when available."}},"required":["handle"],"description":"A user mention entity."},"description":"User mention entities."},"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Short URL as it appears in text."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable display host/path."},"expandedUrl":{"type":"string","minLength":1,"description":"Fully expanded destination URL."}},"required":["url","displayUrl","expandedUrl"],"description":"A URL entity."},"description":"URL entities."},"symbols":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Cashtag or symbol text."}},"required":["text"],"description":"A symbol/cashtag entity."},"description":"Symbol entities."}},"required":["hashtags","userMentions","urls","symbols"],"description":"Entities aligned with `text`."},"isReply":{"type":"boolean","description":"Whether this is a reply."},"inReplyToTweetId":{"type":"string","description":"Parent tweet id when replying."},"inReplyToUserId":{"type":"string","description":"Parent author user id when replying."},"inReplyToScreenName":{"type":"string","description":"Parent author handle when replying."},"isQuote":{"type":"boolean","description":"Whether this tweet quotes another."},"quotedTweetId":{"type":"string","description":"Quoted tweet id when present."},"isRetweet":{"type":"boolean","description":"Whether this is a native repost."},"retweetedTweetId":{"type":"string","description":"Original tweet id for a repost."},"possiblySensitive":{"type":"boolean","description":"Whether X marks the content sensitive."},"editInfo":{"type":"object","properties":{"editTweetIds":{"type":"array","items":{"type":"string","minLength":1},"description":"Tweet ids in this edit chain."},"editableUntilMsec":{"type":"string","description":"Epoch milliseconds until edits are locked."},"isEditEligible":{"type":"boolean","description":"Whether the tweet can still be edited."},"editsRemaining":{"type":"string","description":"Remaining edits in the window, as reported by X."}},"required":["editTweetIds","editableUntilMsec","isEditEligible","editsRemaining"],"description":"Edit metadata when applicable."},"source":{"type":"string","description":"Client label text."},"sourceUrl":{"type":"string","description":"Link target from the source anchor when present."}},"required":["id","url","conversationId","createdAt","language","text","isLongForm","displayTextRange","author","metrics","media","entities","isReply","isQuote","isRetweet","possiblySensitive"],"description":"Expanded quoted tweet (one level deep)."},"retweetedTweet":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Tweet id (`rest_id`)."},"url":{"type":"string","minLength":1,"description":"Canonical public URL for this tweet on x.com."},"conversationId":{"type":"string","minLength":1,"description":"Conversation root tweet id."},"createdAt":{"type":"integer","minimum":0,"description":"Creation time as Unix epoch seconds."},"language":{"type":"string","minLength":1,"description":"BCP 47 or X language code."},"text":{"type":"string","description":"Full tweet text (includes long-form when available)."},"isLongForm":{"type":"boolean","description":"True when text was taken from note_tweet metadata instead of legacy.full_text alone."},"displayTextRange":{"type":"array","items":{"type":"integer","minimum":0},"minItems":2,"maxItems":2,"description":"Start/end character indices for visible text."},"author":{"type":"object","nullable":true,"properties":{"handle":{"type":"string","minLength":1,"description":"Author screen name without the leading @."},"displayName":{"type":"string","nullable":true,"description":"Author display name."},"avatarUrl":{"type":"string","nullable":true,"description":"Best available square avatar URL for the author."},"verified":{"type":"boolean","description":"Whether X marks the author with legacy verification."},"blueVerified":{"type":"boolean","description":"Whether the author has X blue (paid) verification."},"platformUserId":{"type":"string","description":"Numeric X user id for the author as a string."}},"required":["handle","displayName","avatarUrl","verified","blueVerified"],"description":"Author snapshot when available."},"metrics":{"type":"object","properties":{"views":{"type":"integer","minimum":0,"description":"Impression count when reported by X."},"favorites":{"type":"integer","minimum":0,"description":"Favorite (like) count."},"retweets":{"type":"integer","minimum":0,"description":"Native repost count."},"replies":{"type":"integer","minimum":0,"description":"Reply count."},"bookmarks":{"type":"integer","minimum":0,"description":"Bookmark count."},"quotes":{"type":"integer","minimum":0,"description":"Quote tweet count."}},"required":["views","favorites","retweets","replies","bookmarks","quotes"],"description":"Engagement metrics for a tweet."},"media":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","enum":["photo"]},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the media asset."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo"],"description":"Photo attachment on a tweet."},{"type":"object","properties":{"type":{"type":"string","enum":["video","animated_gif"],"description":"Video or MP4-based animated GIF."},"id":{"type":"string","minLength":1,"description":"Media id string."},"url":{"type":"string","minLength":1,"description":"Short t.co URL for this media."},"displayUrl":{"type":"string","minLength":1,"description":"Display URL shown in the tweet."},"expandedUrl":{"type":"string","minLength":1,"description":"Expanded destination URL."},"mediaUrlHttps":{"type":"string","minLength":1,"description":"HTTPS URL for the poster or media."},"sizes":{"type":"object","properties":{"thumb":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Thumbnail size."},"small":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Small variant."},"medium":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Medium variant."},"large":{"type":"object","properties":{"h":{"type":"integer","minimum":0},"w":{"type":"integer","minimum":0},"resize":{"type":"string","minLength":1}},"required":["h","w","resize"],"description":"Large variant."}},"required":["thumb","small","medium","large"],"description":"Per-label media dimensions from X."},"originalInfo":{"type":"object","properties":{"width":{"type":"integer","minimum":0},"height":{"type":"integer","minimum":0}},"required":["width","height"],"description":"Original pixel dimensions."},"variants":{"type":"array","items":{"type":"object","properties":{"contentType":{"type":"string","minLength":1,"description":"MIME type of the variant."},"url":{"type":"string","minLength":1,"description":"Direct URL for this variant."},"bitrate":{"type":"integer","minimum":0,"description":"Bitrate in bits per second when present (omitted for HLS)."}},"required":["contentType","url"],"description":"A downloadable or streamable media variant."},"minItems":1,"description":"Stream or download variants (mp4, HLS, etc.)."},"durationMs":{"type":"integer","minimum":0,"description":"Duration in milliseconds when known."},"aspectRatio":{"type":"array","items":{"type":"integer","minimum":0,"exclusiveMinimum":true},"minItems":2,"maxItems":2,"description":"Width:height ratio tuple when provided by X."}},"required":["type","id","url","displayUrl","expandedUrl","mediaUrlHttps","sizes","originalInfo","variants"],"description":"Video or animated GIF attachment."}]},"description":"Photo, video, or GIF attachments."},"entities":{"type":"object","properties":{"hashtags":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Hashtag text without #."}},"required":["text"],"description":"A hashtag entity."},"description":"Hashtag entities."},"userMentions":{"type":"array","items":{"type":"object","properties":{"handle":{"type":"string","minLength":1,"description":"Mentioned screen name."},"displayName":{"type":"string","description":"Display name when available."},"platformUserId":{"type":"string","description":"Numeric user id for the mention when available."}},"required":["handle"],"description":"A user mention entity."},"description":"User mention entities."},"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","minLength":1,"description":"Short URL as it appears in text."},"displayUrl":{"type":"string","minLength":1,"description":"Human-readable display host/path."},"expandedUrl":{"type":"string","minLength":1,"description":"Fully expanded destination URL."}},"required":["url","displayUrl","expandedUrl"],"description":"A URL entity."},"description":"URL entities."},"symbols":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","minLength":1,"description":"Cashtag or symbol text."}},"required":["text"],"description":"A symbol/cashtag entity."},"description":"Symbol entities."}},"required":["hashtags","userMentions","urls","symbols"],"description":"Entities aligned with `text`."},"isReply":{"type":"boolean","description":"Whether this is a reply."},"inReplyToTweetId":{"type":"string","description":"Parent tweet id when replying."},"inReplyToUserId":{"type":"string","description":"Parent author user id when replying."},"inReplyToScreenName":{"type":"string","description":"Parent author handle when replying."},"isQuote":{"type":"boolean","description":"Whether this tweet quotes another."},"quotedTweetId":{"type":"string","description":"Quoted tweet id when present."},"isRetweet":{"type":"boolean","description":"Whether this is a native repost."},"retweetedTweetId":{"type":"string","description":"Original tweet id for a repost."},"possiblySensitive":{"type":"boolean","description":"Whether X marks the content sensitive."},"editInfo":{"type":"object","properties":{"editTweetIds":{"type":"array","items":{"type":"string","minLength":1},"description":"Tweet ids in this edit chain."},"editableUntilMsec":{"type":"string","description":"Epoch milliseconds until edits are locked."},"isEditEligible":{"type":"boolean","description":"Whether the tweet can still be edited."},"editsRemaining":{"type":"string","description":"Remaining edits in the window, as reported by X."}},"required":["editTweetIds","editableUntilMsec","isEditEligible","editsRemaining"],"description":"Edit metadata when applicable."},"source":{"type":"string","description":"Client label text."},"sourceUrl":{"type":"string","description":"Link target from the source anchor when present."}},"required":["id","url","conversationId","createdAt","language","text","isLongForm","displayTextRange","author","metrics","media","entities","isReply","isQuote","isRetweet","possiblySensitive"],"description":"Expanded reposted tweet (one level deep)."}},"required":["id","url","conversationId","createdAt","language","text","isLongForm","displayTextRange","author","metrics","media","entities","isReply","isQuote","isRetweet","possiblySensitive"]},"description":"Tweets returned for the requested community. This array may be empty when `lookupStatus` is `found` and no tweets are returned in this response, or when `lookupStatus` is `not_found`."}},"required":["lookupStatus","tweets"],"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","tweets":[{"id":"2054308458565095634","url":"https://x.com/jpbelmo/status/2054308458565095634","conversationId":"2054308458565095634","createdAt":1778620278,"language":"en","text":"built a 450k users company in san francisco with:\n\n1 macbook\nyerba mate\ndangerous optimism https://t.co/Trl8WRfmCk","isLongForm":false,"displayTextRange":[0,90],"author":{"handle":"jpbelmo","displayName":"juan belmont","avatarUrl":"https://pbs.twimg.com/profile_images/1914130312537264128/ExOXNvw5_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"498601325"},"metrics":{"views":237480,"favorites":982,"retweets":15,"replies":75,"bookmarks":142,"quotes":5},"media":[{"type":"photo","id":"2054308455503347712","url":"https://t.co/Trl8WRfmCk","displayUrl":"pic.x.com/Trl8WRfmCk","expandedUrl":"https://x.com/jpbelmo/status/2054308458565095634/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIJep_VbwAAsBuA.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":1200,"w":900,"resize":"fit"},"large":{"h":2048,"w":1536,"resize":"fit"}},"originalInfo":{"width":1536,"height":2048}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2054929051769303346","url":"https://x.com/juiceboy_of_abj/status/2054929051769303346","conversationId":"2054929051769303346","createdAt":1778768239,"language":"en","text":"Not everything has to be celebrated publicly, I just hit 5m impressions and got eligible for creator revenue on x and i never said anything about it .\n\nThat’s maturity. https://t.co/GLi24fIoxv","isLongForm":false,"displayTextRange":[0,168],"author":{"handle":"juiceboy_of_abj","displayName":"Elijah 🌊","avatarUrl":"https://pbs.twimg.com/profile_images/2047368553309798400/e19Qhn0y_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1525367022070145024"},"metrics":{"views":147092,"favorites":340,"retweets":23,"replies":152,"bookmarks":9,"quotes":11},"media":[{"type":"photo","id":"2054929038095912960","url":"https://t.co/GLi24fIoxv","displayUrl":"pic.x.com/GLi24fIoxv","expandedUrl":"https://x.com/juiceboy_of_abj/status/2054929051769303346/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HISTEppXkAAUyJC.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":489,"resize":"fit"},"medium":{"h":1200,"w":863,"resize":"fit"},"large":{"h":1627,"w":1170,"resize":"fit"}},"originalInfo":{"width":1170,"height":1627}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2055290818231996745","url":"https://x.com/juiceboy_of_abj/status/2055290818231996745","conversationId":"2055290818231996745","createdAt":1778854491,"language":"en","text":"How much would you charge for a full stack  Real Estate project that  lets users list properties/buy, hotel booking with payment integration etc\n\nWebsite \nMobile app - iOS/Android\nAdmin Dashboard .\n\nthis client reached out to me few days back, scheduled a short call, sent project https://t.co/xgYBYvoHYq","isLongForm":false,"displayTextRange":[0,280],"author":{"handle":"juiceboy_of_abj","displayName":"Elijah 🌊","avatarUrl":"https://pbs.twimg.com/profile_images/2047368553309798400/e19Qhn0y_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1525367022070145024"},"metrics":{"views":91186,"favorites":272,"retweets":13,"replies":136,"bookmarks":72,"quotes":13},"media":[{"type":"photo","id":"2055290807284817920","url":"https://t.co/xgYBYvoHYq","displayUrl":"pic.x.com/xgYBYvoHYq","expandedUrl":"https://x.com/juiceboy_of_abj/status/2055290818231996745/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIXcGY5WYAANSF3.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":428,"resize":"fit"},"medium":{"h":1200,"w":754,"resize":"fit"},"large":{"h":1861,"w":1170,"resize":"fit"}},"originalInfo":{"width":1170,"height":1861}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2054475758752661744","url":"https://x.com/beka_saparbek/status/2054475758752661744","conversationId":"2054475758752661744","createdAt":1778660165,"language":"en","text":"Day 137 of building in Public.    \nGoal is to earn  $9,000 in May.    \n\nCurrent progress:  \nInstalls: 1,609(+121)  \nRevenue: $2,683(+188)  \nMRR: $2070(+80)\n\nJust finished fixing last bug. App is ready.\nSoon marketing campaign will start. https://t.co/gcM3ohKPEW","isLongForm":false,"displayTextRange":[0,237],"author":{"handle":"beka_saparbek","displayName":"Shynggys Saparbek","avatarUrl":"https://pbs.twimg.com/profile_images/2013139549845614592/rKRZqLye_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1482928912334270464"},"metrics":{"views":84806,"favorites":270,"retweets":1,"replies":108,"bookmarks":17,"quotes":1},"media":[{"type":"photo","id":"2054475729715478528","url":"https://t.co/gcM3ohKPEW","displayUrl":"pic.x.com/gcM3ohKPEW","expandedUrl":"https://x.com/beka_saparbek/status/2054475758752661744/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIL2yoVaQAAXWed.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":510,"w":680,"resize":"fit"},"medium":{"h":900,"w":1200,"resize":"fit"},"large":{"h":1536,"w":2048,"resize":"fit"}},"originalInfo":{"width":4032,"height":3024}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2054787968024338799","url":"https://x.com/juiceboy_of_abj/status/2054787968024338799","conversationId":"2054787968024338799","createdAt":1778734602,"language":"en","text":"Good morning techies 🙌🌄\n\nLet's do more today😀💪\nDo have a productive day 😊🤗 https://t.co/BE1qHO3nqH","isLongForm":false,"displayTextRange":[0,74],"author":{"handle":"juiceboy_of_abj","displayName":"Elijah 🌊","avatarUrl":"https://pbs.twimg.com/profile_images/2047368553309798400/e19Qhn0y_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1525367022070145024"},"metrics":{"views":82717,"favorites":239,"retweets":22,"replies":116,"bookmarks":3,"quotes":1},"media":[{"type":"photo","id":"2054787926584692736","url":"https://t.co/BE1qHO3nqH","displayUrl":"pic.x.com/BE1qHO3nqH","expandedUrl":"https://x.com/juiceboy_of_abj/status/2054787968024338799/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIQSu4TXkAAejqs.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":1080,"w":810,"resize":"fit"},"large":{"h":1080,"w":810,"resize":"fit"}},"originalInfo":{"width":810,"height":1080}},{"type":"photo","id":"2054787927364734976","url":"https://t.co/BE1qHO3nqH","displayUrl":"pic.x.com/BE1qHO3nqH","expandedUrl":"https://x.com/juiceboy_of_abj/status/2054787968024338799/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIQSu7NWEAAd4-S.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":992,"w":744,"resize":"fit"},"large":{"h":992,"w":744,"resize":"fit"}},"originalInfo":{"width":744,"height":992}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2053832454176125066","url":"https://x.com/ericdjav/status/2053832454176125066","conversationId":"2053832454176125066","createdAt":1778506790,"language":"en","text":"I launched a SAAS 3 month ago...\n\nToday, I got my first annual subscription 🎊 https://t.co/TViC0tQSbC","isLongForm":false,"displayTextRange":[0,77],"author":{"handle":"ericdjav","displayName":"Eric Djavid","avatarUrl":"https://pbs.twimg.com/profile_images/1884705640246915072/4Y39VboE_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1260691957640298500"},"metrics":{"views":29508,"favorites":220,"retweets":2,"replies":112,"bookmarks":7,"quotes":0},"media":[{"type":"photo","id":"2053832442817970176","url":"https://t.co/TViC0tQSbC","displayUrl":"pic.x.com/TViC0tQSbC","expandedUrl":"https://x.com/ericdjav/status/2053832454176125066/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HICtuZ5WgAAwBvX.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":680,"resize":"fit"},"medium":{"h":1200,"w":1200,"resize":"fit"},"large":{"h":1200,"w":1200,"resize":"fit"}},"originalInfo":{"width":1200,"height":1200}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2054874790003896355","url":"https://x.com/JulesMandoX/status/2054874790003896355","conversationId":"2054874790003896355","createdAt":1778755302,"language":"en","text":"We can once again say that Steve Jobs was right, 20 years in advance 🥲\n\nWhat machine will you build on this weekend? 💻 https://t.co/JEbiI5A50F","isLongForm":false,"displayTextRange":[0,118],"author":{"handle":"JulesMandoX","displayName":"Jules Mando","avatarUrl":"https://pbs.twimg.com/profile_images/2041534130286972928/xA7_y3BM_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"2037233097293361152"},"metrics":{"views":227975,"favorites":187,"retweets":4,"replies":3,"bookmarks":8,"quotes":0},"media":[{"type":"photo","id":"2054874785117622272","url":"https://t.co/JEbiI5A50F","displayUrl":"pic.x.com/JEbiI5A50F","expandedUrl":"https://x.com/JulesMandoX/status/2054874790003896355/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIRhutjX0AAw7R5.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":454,"w":680,"resize":"fit"},"medium":{"h":547,"w":820,"resize":"fit"},"large":{"h":547,"w":820,"resize":"fit"}},"originalInfo":{"width":820,"height":547}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2054824774790938717","url":"https://x.com/juiceboy_of_abj/status/2054824774790938717","conversationId":"2054824774790938717","createdAt":1778743377,"language":"en","text":"So If Cache is faster than database, then why use database instead of cache ? https://t.co/65CcV7edFi","isLongForm":false,"displayTextRange":[0,77],"author":{"handle":"juiceboy_of_abj","displayName":"Elijah 🌊","avatarUrl":"https://pbs.twimg.com/profile_images/2047368553309798400/e19Qhn0y_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1525367022070145024"},"metrics":{"views":9559,"favorites":179,"retweets":7,"replies":65,"bookmarks":11,"quotes":11},"media":[{"type":"photo","id":"2054824767287390208","url":"https://t.co/65CcV7edFi","displayUrl":"pic.x.com/65CcV7edFi","expandedUrl":"https://x.com/juiceboy_of_abj/status/2054824774790938717/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIQ0PSnW8AA68zZ.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":425,"w":582,"resize":"fit"},"medium":{"h":425,"w":582,"resize":"fit"},"large":{"h":425,"w":582,"resize":"fit"}},"originalInfo":{"width":582,"height":425}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2055511814406840681","url":"https://x.com/juiceboy_of_abj/status/2055511814406840681","conversationId":"2055511814406840681","createdAt":1778907180,"language":"en","text":"Good morning techies 🙌🌄\n\nLet's do more today😀💪\nDo have a productive day 😊🤗 https://t.co/fyUFgCvKHZ","isLongForm":false,"displayTextRange":[0,74],"author":{"handle":"juiceboy_of_abj","displayName":"Elijah 🌊","avatarUrl":"https://pbs.twimg.com/profile_images/2047368553309798400/e19Qhn0y_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1525367022070145024"},"metrics":{"views":97273,"favorites":170,"retweets":15,"replies":99,"bookmarks":3,"quotes":1},"media":[{"type":"photo","id":"2055511803455488000","url":"https://t.co/fyUFgCvKHZ","displayUrl":"pic.x.com/fyUFgCvKHZ","expandedUrl":"https://x.com/juiceboy_of_abj/status/2055511814406840681/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIalGDyWQAAXBaB.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":1200,"w":900,"resize":"fit"},"large":{"h":2048,"w":1536,"resize":"fit"}},"originalInfo":{"width":1536,"height":2048}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2053652141257191690","url":"https://x.com/innovate_leo/status/2053652141257191690","conversationId":"2053652141257191690","createdAt":1778463800,"language":"en","text":"Builders 👇 \n\nWhat are you building and who is it for?  \n\nDrop it below  \n\nLet’s see real products, not ideas 👀","isLongForm":false,"displayTextRange":[0,110],"author":{"handle":"innovate_leo","displayName":"Leo","avatarUrl":"https://pbs.twimg.com/profile_images/1658454550586720256/ca3pmd6W_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"971583099724353538"},"metrics":{"views":289389,"favorites":154,"retweets":4,"replies":292,"bookmarks":12,"quotes":2},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2054189494752993519","url":"https://x.com/ugo_builds/status/2054189494752993519","conversationId":"2054189494752993519","createdAt":1778591915,"language":"en","text":"I didn't even pay attention 😱\n\nCrossed $50 MRR!!\n\nNext stop: $100 https://t.co/lc0HJ3LDsR","isLongForm":false,"displayTextRange":[0,65],"author":{"handle":"ugo_builds","displayName":"Ugo","avatarUrl":"https://pbs.twimg.com/profile_images/1952099724623794176/Ts9l7Qzg_400x400.png","verified":false,"blueVerified":true,"platformUserId":"1808416770744516609"},"metrics":{"views":11135,"favorites":152,"retweets":1,"replies":87,"bookmarks":4,"quotes":0},"media":[{"type":"photo","id":"2054188719393939456","url":"https://t.co/lc0HJ3LDsR","displayUrl":"pic.x.com/lc0HJ3LDsR","expandedUrl":"https://x.com/ugo_builds/status/2054189494752993519/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIHxwbkXIAARx1G.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":510,"w":680,"resize":"fit"},"medium":{"h":900,"w":1200,"resize":"fit"},"large":{"h":1440,"w":1920,"resize":"fit"}},"originalInfo":{"width":1920,"height":1440}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2055105223392403727","url":"https://x.com/woocassh/status/2055105223392403727","conversationId":"2055105223392403727","createdAt":1778810241,"language":"en","text":"MASSIVE milestone! 🎉\n\nmy product finally covered claude code subscription cost lmfao \n\n100k MRR WEN https://t.co/9cxs2Re1OF","isLongForm":false,"displayTextRange":[0,99],"author":{"handle":"woocassh","displayName":"Lukasz","avatarUrl":"https://pbs.twimg.com/profile_images/1858049621974724612/weTDvvOg_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"2158961771"},"metrics":{"views":3317,"favorites":147,"retweets":1,"replies":59,"bookmarks":0,"quotes":1},"media":[{"type":"photo","id":"2055105104882360320","url":"https://t.co/9cxs2Re1OF","displayUrl":"pic.x.com/9cxs2Re1OF","expandedUrl":"https://x.com/woocassh/status/2055105223392403727/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIUzNFia4AAb9v8.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":383,"w":680,"resize":"fit"},"medium":{"h":675,"w":1200,"resize":"fit"},"large":{"h":1152,"w":2048,"resize":"fit"}},"originalInfo":{"width":4096,"height":2304}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2053460165421137951","url":"https://x.com/acadictive/status/2053460165421137951","conversationId":"2053460165421137951","createdAt":1778418029,"language":"en","text":"I have:\n\n0 MRR.\n0 ARR.\n0 salary.\n0 investors.\n0 funding.\n\nBut maybe this tweet makes me rich.","isLongForm":false,"displayTextRange":[0,93],"author":{"handle":"acadictive","displayName":"Ehsan","avatarUrl":"https://pbs.twimg.com/profile_images/1996662487731560448/r6wo78NW_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1991513303018008580"},"metrics":{"views":4299,"favorites":142,"retweets":3,"replies":63,"bookmarks":2,"quotes":0},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2054610963933073430","url":"https://x.com/Javizecom/status/2054610963933073430","conversationId":"2054610963933073430","createdAt":1778692401,"language":"en","text":"working here. working there. working everywhere. https://t.co/Jcnbviextq","isLongForm":false,"displayTextRange":[0,48],"author":{"handle":"Javizecom","displayName":"Javiz","avatarUrl":"https://pbs.twimg.com/profile_images/1910743181164949504/OQIzZ8mf_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1832431101605765120"},"metrics":{"views":5238,"favorites":139,"retweets":6,"replies":21,"bookmarks":14,"quotes":0},"media":[{"type":"photo","id":"2054610956735705088","url":"https://t.co/Jcnbviextq","displayUrl":"pic.x.com/Jcnbviextq","expandedUrl":"https://x.com/Javizecom/status/2054610963933073430/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HINxx4PbcAA91sH.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":1200,"w":900,"resize":"fit"},"large":{"h":2048,"w":1536,"resize":"fit"}},"originalInfo":{"width":1536,"height":2048}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2054772606801523019","url":"https://x.com/qwertyu_alex/status/2054772606801523019","conversationId":"2054772606801523019","createdAt":1778730939,"language":"en","text":"2K followers! Took me +2 years. \n\nThis number encapsulates my entrepreneurial journey until now:\n- my first viral tweet\n- quitting my fulltime job\n- my first internet money\n- getting interviewed for podcasts and articles\n- finding my co-founder\n- getting accepted into https://t.co/1Vnt7yFSXI","isLongForm":false,"displayTextRange":[0,268],"author":{"handle":"qwertyu_alex","displayName":"Alex 🇩🇰","avatarUrl":"https://pbs.twimg.com/profile_images/1920413020280266752/QNjWDf_I_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1050886046"},"metrics":{"views":3089,"favorites":136,"retweets":1,"replies":59,"bookmarks":5,"quotes":1},"media":[{"type":"photo","id":"2054772592796733440","url":"https://t.co/1Vnt7yFSXI","displayUrl":"pic.x.com/1Vnt7yFSXI","expandedUrl":"https://x.com/qwertyu_alex/status/2054772606801523019/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIQEyVfbkAAe3ND.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":510,"resize":"fit"},"medium":{"h":1200,"w":900,"resize":"fit"},"large":{"h":2048,"w":1536,"resize":"fit"}},"originalInfo":{"width":1536,"height":2048}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"},{"id":"2053919023482687672","url":"https://x.com/TimJayas/status/2053919023482687672","conversationId":"2053919023482687672","createdAt":1778527429,"language":"en","text":"\"I Just made $400 MRR with my app\" 🎉\n\nReality:\n\n- ai subscription: $200\n- api cost: $110.60\n- profit: $89\n\nthat's not even including refunds :) https://t.co/GLPjy36Bz8","isLongForm":false,"displayTextRange":[0,143],"author":{"handle":"TimJayas","displayName":"Tim Jayas","avatarUrl":"https://pbs.twimg.com/profile_images/2016190209768226821/MW5mAfL-_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1956954573614313472"},"metrics":{"views":4745,"favorites":131,"retweets":0,"replies":77,"bookmarks":5,"quotes":1},"media":[{"type":"photo","id":"2053917377050595328","url":"https://t.co/GLPjy36Bz8","displayUrl":"pic.x.com/GLPjy36Bz8","expandedUrl":"https://x.com/TimJayas/status/2053919023482687672/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HID6-OkaUAADecK.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":369,"w":680,"resize":"fit"},"medium":{"h":467,"w":861,"resize":"fit"},"large":{"h":467,"w":861,"resize":"fit"}},"originalInfo":{"width":861,"height":467}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2055552551043383521","url":"https://x.com/meta_courier1/status/2055552551043383521","conversationId":"2055552551043383521","createdAt":1778916893,"language":"en","text":"There are days in this space where everything clicks. The content flows, the opportunities are coming in and you feel like you've cracked the code on building in Web3.\n\nThen there are days where you question all of it.\n\nAm I good enough for this? Is this sustainable? Why does it https://t.co/2QXynVoRI9","isLongForm":false,"displayTextRange":[0,279],"author":{"handle":"meta_courier1","displayName":"Meta Courier","avatarUrl":"https://pbs.twimg.com/profile_images/2054270344031031296/JfycQOMn_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1866356501285142528"},"metrics":{"views":1552,"favorites":130,"retweets":1,"replies":31,"bookmarks":0,"quotes":1},"media":[{"type":"photo","id":"2055552548078047232","url":"https://t.co/2QXynVoRI9","displayUrl":"pic.x.com/2QXynVoRI9","expandedUrl":"https://x.com/meta_courier1/status/2055552551043383521/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIbKJtVXUAAYPyT.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":674,"w":680,"resize":"fit"},"medium":{"h":714,"w":720,"resize":"fit"},"large":{"h":714,"w":720,"resize":"fit"}},"originalInfo":{"width":720,"height":714}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for Android","sourceUrl":"http://twitter.com/download/android"},{"id":"2054518987153633487","url":"https://x.com/insights5g/status/2054518987153633487","conversationId":"2054518987153633487","createdAt":1778670472,"language":"en","text":"If you are too busy working, you won't have time to get rich.","isLongForm":false,"displayTextRange":[0,61],"author":{"handle":"insights5g","displayName":"Yaron.","avatarUrl":"https://pbs.twimg.com/profile_images/2055143907025989632/VYsIvEgg_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1817151789860610048"},"metrics":{"views":11029,"favorites":130,"retweets":92,"replies":39,"bookmarks":4,"quotes":2},"media":[],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for Android","sourceUrl":"http://twitter.com/download/android"},{"id":"2054869866562064492","url":"https://x.com/beka_saparbek/status/2054869866562064492","conversationId":"2054869866562064492","createdAt":1778754128,"language":"en","text":"Day 138 of building in Public.     \n\nGoal is to earn  $9,000 in May.      \n\nCurrent progress:   \nInstalls: 1,750(+141)   \nRevenue: $2,882(+199)   \nMRR: $2050(-20)\n\nMy new app Ingram was released. So far only: 51 installs and 5$ in sales https://t.co/tXdJA2xC7W","isLongForm":false,"displayTextRange":[0,236],"author":{"handle":"beka_saparbek","displayName":"Shynggys Saparbek","avatarUrl":"https://pbs.twimg.com/profile_images/2013139549845614592/rKRZqLye_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1482928912334270464"},"metrics":{"views":2603,"favorites":124,"retweets":0,"replies":39,"bookmarks":7,"quotes":1},"media":[{"type":"photo","id":"2054869827697745920","url":"https://t.co/tXdJA2xC7W","displayUrl":"pic.x.com/tXdJA2xC7W","expandedUrl":"https://x.com/beka_saparbek/status/2054869866562064492/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HIRdOJuXoAAgM9L.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":510,"w":680,"resize":"fit"},"medium":{"h":900,"w":1200,"resize":"fit"},"large":{"h":1536,"w":2048,"resize":"fit"}},"originalInfo":{"width":4032,"height":3024}}],"entities":{"hashtags":[],"userMentions":[],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter Web App","sourceUrl":"https://mobile.twitter.com"},{"id":"2053401693656604790","url":"https://x.com/byLuocca/status/2053401693656604790","conversationId":"2053401693656604790","createdAt":1778404088,"language":"en","text":"I had my best day ever on @X 🎉\n\nSo close to 10k impressions!\n\nAgain…\n\nI will reach my first 10k day soon\n\nLet’s keep building and growing together! https://t.co/unrMxkopli","isLongForm":false,"displayTextRange":[0,147],"author":{"handle":"byLuocca","displayName":"Luca Marchetti","avatarUrl":"https://pbs.twimg.com/profile_images/1848649694907420672/Z-tV7W-2_400x400.jpg","verified":false,"blueVerified":true,"platformUserId":"1835397805155749888"},"metrics":{"views":19701,"favorites":124,"retweets":2,"replies":76,"bookmarks":3,"quotes":3},"media":[{"type":"photo","id":"2053401687595851779","url":"https://t.co/unrMxkopli","displayUrl":"pic.x.com/unrMxkopli","expandedUrl":"https://x.com/byLuocca/status/2053401693656604790/photo/1","mediaUrlHttps":"https://pbs.twimg.com/media/HH8l9JpWoAMRpSn.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"small":{"h":680,"w":635,"resize":"fit"},"medium":{"h":1200,"w":1121,"resize":"fit"},"large":{"h":1253,"w":1170,"resize":"fit"}},"originalInfo":{"width":1170,"height":1253}}],"entities":{"hashtags":[],"userMentions":[{"handle":"X","displayName":"X","platformUserId":"783214"}],"urls":[],"symbols":[]},"isReply":false,"isQuote":false,"isRetweet":false,"possiblySensitive":false,"source":"Twitter for iPhone","sourceUrl":"http://twitter.com/download/iphone"}]},"meta":{"requestId":"req_2df9b084-4647-48e0-9567-1cea41de3afa","creditsCharged":1,"version":"v1"}}},"found_empty":{"value":{"data":{"lookupStatus":"found","tweets":[]},"meta":{"requestId":"req_01example_empty","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","tweets":[]},"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."}},"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."}},"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."}},"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."}},"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."}},"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."}},"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/telegram/channels/{handle}":{"get":{"tags":["Telegram"],"summary":"Get Telegram public entity","description":"Get metadata for a public Telegram channel or group by username.","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":200,"description":"Telegram public username (channel or group), with or without leading @."},"required":true,"description":"Telegram public username (channel or group), with or without leading @.","name":"handle","in":"path"}],"responses":{"200":{"description":"Lookup result. Check `data.lookupStatus` for `found`, `not_found`, or `restricted` before reading `data.entity`. Returns channel or group metadata when `found`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found","restricted"],"description":"Domain outcome of the entity lookup. Always check this before reading `entity`."},"entity":{"type":"object","nullable":true,"properties":{"entityType":{"type":"string","enum":["channel","group","user_or_bot","unknown"],"description":"Resolved Telegram public entity type."},"title":{"type":"string","nullable":true,"description":"Display name."},"description":{"type":"string","nullable":true,"description":"Bio/description text. Line breaks are preserved when Telegram renders them on the public page."},"subscriberCount":{"type":"integer","nullable":true,"description":"Subscriber count for broadcast channels from Telegram's public page at t.me/{handle}. Null for groups and other entity types."},"memberCount":{"type":"integer","nullable":true,"description":"Member count for public groups/supergroups. Null for channels and other entity types."},"onlineCount":{"type":"integer","nullable":true,"description":"Currently online member count when Telegram shows it on the public group page. Null for channels and other entity types."},"avatarUrl":{"type":"string","nullable":true,"description":"URL of the avatar image when Telegram serves a CDN photo."},"isVerified":{"type":"boolean","description":"Whether the entity has a Telegram verified badge."},"handle":{"type":"string","description":"The canonical username/handle that was looked up."}},"required":["entityType","title","description","subscriberCount","memberCount","onlineCount","avatarUrl","isVerified","handle"],"description":"Entity data when lookupStatus is `found`; null when `not_found` or `restricted`."}},"required":["lookupStatus","entity"],"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","entity":{"entityType":"channel","title":"Test Channel","description":"Channel description text.","subscriberCount":12500,"memberCount":null,"onlineCount":null,"avatarUrl":"https://cdn4.telesco.pe/file/avatar.jpg","isVerified":false,"handle":"testchannel"}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"group":{"value":{"data":{"lookupStatus":"found","entity":{"entityType":"group","title":"Futboltv ⚽️","description":"Gol Videolari✅\nFutbol Yangiliklari✅\nFutbolga oid qiziqarli ma'lumotlar✅","subscriberCount":null,"memberCount":1742860,"onlineCount":27088,"avatarUrl":null,"isVerified":false,"handle":"futbol_fudbol_sport_tv_gollar"}},"meta":{"requestId":"req_01example_group","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","entity":null},"meta":{"requestId":"req_01example_nf","creditsCharged":1,"version":"v1"}}},"restricted":{"value":{"data":{"lookupStatus":"restricted","entity":null},"meta":{"requestId":"req_01example_restricted","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle","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."}},"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."}},"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."}},"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."}},"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.","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."}},"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."}},"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/telegram/channels/{handle}/posts":{"get":{"tags":["Telegram"],"summary":"Get Telegram channel posts","description":"List recent posts from a public Telegram channel. Groups are not supported.","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":200,"description":"Telegram public username (channel or group), with or without leading @."},"required":true,"description":"Telegram public username (channel or group), with or without leading @.","name":"handle","in":"path"},{"schema":{"type":"string","description":"Opaque pagination cursor from a previous response. Omit for the first page."},"required":false,"description":"Opaque pagination cursor from a previous response. Omit for the first page.","name":"cursor","in":"query"}],"responses":{"200":{"description":"Lookup result. Check `data.lookupStatus` for `found`, `not_found`, or `restricted` before reading `data.posts`. When `found`, use `data.nextCursor` for pagination when `data.hasMore` is true.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found","restricted"],"description":"Domain outcome of the channel lookup. Always check this before reading `posts`."},"posts":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string","description":"Unique post ID within the channel."},"text":{"type":"string","nullable":true,"description":"Post text as simplified HTML (<br> line breaks, <a href> links, custom tg-emoji expanded to unicode, common HTML entities decoded so arrows and quotes read naturally in JSON). Null if the post contains only media."},"date":{"type":"string","nullable":true,"description":"ISO 8601 publication timestamp."},"views":{"type":"integer","nullable":true,"description":"View count from the public feed. Telegram may abbreviate large values (e.g. 1.13M → 1130000). Null for very recent posts."},"forwardedFrom":{"type":"string","nullable":true,"description":"Original channel name if this post was forwarded."},"replyTo":{"type":"object","nullable":true,"properties":{"postId":{"type":"string","description":"Numeric post ID of the message being replied to, from the public t.me link in the reply preview."},"authorName":{"type":"string","nullable":true,"description":"Channel or author name shown in the reply preview bar."},"text":{"type":"string","nullable":true,"description":"Preview snippet of the replied-to message as shown in the embed (often truncated). May be a short media label such as Photo when Telegram does not show body text."}},"default":null,"required":["postId","authorName","text"],"description":"Reply/quote preview when this post replies to another channel message; null otherwise."},"photoUrls":{"type":"array","items":{"type":"string"},"description":"Photo URLs from Telegram CDN. May expire over time; download promptly if needed."},"videoUrl":{"type":"string","nullable":true,"description":"Video URL if the post contains a video. May expire over time; download promptly if needed."},"reactions":{"type":"array","items":{"type":"object","properties":{"emoji":{"type":"string","nullable":true,"description":"Unicode reaction emoji when Telegram exposes it in the public HTML (including Stars as ⭐). Null for premium/custom animated reactions — use customEmojiId and emojiImageUrl."},"customEmojiId":{"type":"string","nullable":true,"default":null,"description":"Telegram custom emoji document id when the reaction uses a premium/custom emoji."},"emojiImageUrl":{"type":"string","nullable":true,"default":null,"description":"Preview image URL for custom emoji reactions (from Telegram's public emoji metadata). Null for standard unicode reactions."},"isPaid":{"type":"boolean","default":false,"description":"True when the reaction is a Telegram Stars paid reaction."},"count":{"type":"integer","minimum":0,"description":"Number of users who added this reaction."}},"required":["emoji","count"],"description":"A reaction emoji and count from the public channel feed."},"default":[],"description":"Reaction counts shown on the public preview page. Empty when Telegram omits them for a post."}},"required":["postId","text","date","views","forwardedFrom","photoUrls","videoUrl"],"description":"A single Telegram channel post."},"description":"Posts in reverse chronological order (newest first) when lookupStatus is `found`. Empty when `not_found` or `restricted`."},"nextCursor":{"type":"string","nullable":true,"description":"Pagination cursor for the next page. Null if no more posts."},"hasMore":{"type":"boolean","description":"Whether older posts are available. True when Telegram's public feed HTML includes a load-more control for earlier messages."}},"required":["lookupStatus","posts","nextCursor","hasMore"],"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":[{"postId":"100","text":"Hello world","date":"2026-01-15T10:00:00+00:00","views":1200,"forwardedFrom":null,"replyTo":null,"photoUrls":[],"videoUrl":null,"reactions":[]}],"nextCursor":null,"hasMore":false},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","posts":[],"nextCursor":null,"hasMore":false},"meta":{"requestId":"req_01example_posts_nf","creditsCharged":1,"version":"v1"}}},"restricted":{"value":{"data":{"lookupStatus":"restricted","posts":[],"nextCursor":null,"hasMore":false},"meta":{"requestId":"req_01example_posts_restricted","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle or pagination 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."}},"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."}},"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."}},"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."}},"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.","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."}},"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."}},"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/telegram/channels/{handle}/posts/{postId}":{"get":{"tags":["Telegram"],"summary":"Get Telegram channel post","description":"Get a single public post from a Telegram channel by handle and post ID. Groups are not supported.","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,"description":"Telegram public username (channel or group), with or without leading @."},"required":true,"description":"Telegram public username (channel or group), with or without leading @.","name":"handle","in":"path"},{"schema":{"type":"string","maxLength":20,"pattern":"^\\d+$","description":"Numeric Telegram channel post ID from the public URL."},"required":true,"description":"Numeric Telegram channel post ID from the public URL.","name":"postId","in":"path"}],"responses":{"200":{"description":"Lookup result. Check `data.lookupStatus` for `found`, `not_found`, or `restricted` before reading `data.post`.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","not_found","restricted"],"description":"Domain outcome of the channel/post lookup. Always check this before reading `post`."},"post":{"type":"object","nullable":true,"properties":{"postId":{"type":"string","description":"Unique post ID within the channel."},"text":{"type":"string","nullable":true,"description":"Post text as simplified HTML (<br> line breaks, <a href> links, custom tg-emoji expanded to unicode, common HTML entities decoded so arrows and quotes read naturally in JSON). Null if the post contains only media."},"date":{"type":"string","nullable":true,"description":"ISO 8601 publication timestamp."},"views":{"type":"integer","nullable":true,"description":"View count from the public feed. Telegram may abbreviate large values (e.g. 1.13M → 1130000). Null for very recent posts."},"forwardedFrom":{"type":"string","nullable":true,"description":"Original channel name if this post was forwarded."},"replyTo":{"type":"object","nullable":true,"properties":{"postId":{"type":"string","description":"Numeric post ID of the message being replied to, from the public t.me link in the reply preview."},"authorName":{"type":"string","nullable":true,"description":"Channel or author name shown in the reply preview bar."},"text":{"type":"string","nullable":true,"description":"Preview snippet of the replied-to message as shown in the embed (often truncated). May be a short media label such as Photo when Telegram does not show body text."}},"default":null,"required":["postId","authorName","text"],"description":"Reply/quote preview when this post replies to another channel message; null otherwise."},"photoUrls":{"type":"array","items":{"type":"string"},"description":"Photo URLs from Telegram CDN. May expire over time; download promptly if needed."},"videoUrl":{"type":"string","nullable":true,"description":"Video URL if the post contains a video. May expire over time; download promptly if needed."},"reactions":{"type":"array","items":{"type":"object","properties":{"emoji":{"type":"string","nullable":true,"description":"Unicode reaction emoji when Telegram exposes it in the public HTML (including Stars as ⭐). Null for premium/custom animated reactions — use customEmojiId and emojiImageUrl."},"customEmojiId":{"type":"string","nullable":true,"default":null,"description":"Telegram custom emoji document id when the reaction uses a premium/custom emoji."},"emojiImageUrl":{"type":"string","nullable":true,"default":null,"description":"Preview image URL for custom emoji reactions (from Telegram's public emoji metadata). Null for standard unicode reactions."},"isPaid":{"type":"boolean","default":false,"description":"True when the reaction is a Telegram Stars paid reaction."},"count":{"type":"integer","minimum":0,"description":"Number of users who added this reaction."}},"required":["emoji","count"],"description":"A reaction emoji and count from the public channel feed."},"default":[],"description":"Reaction counts shown on the public preview page. Empty when Telegram omits them for a post."}},"required":["postId","text","date","views","forwardedFrom","photoUrls","videoUrl"],"description":"The post when lookupStatus is `found`; null when `not_found` or `restricted`."}},"required":["lookupStatus","post"],"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":{"postId":"93","text":"In Telegram 10.12<br>⭐️ Premium Users can use Custom emojis in Polls by pressing on 🙂 icon","date":"2024-05-04T14:11:43+00:00","views":193000,"forwardedFrom":null,"replyTo":null,"photoUrls":["https://cdn4.telesco.pe/file/kmnXZjsr08SIjsurmBb8HZiJSr5Cs1XmCt4HAu9As-f3KYbWCCpGj6koOApEEgruutsEukhb2SV5EWmAudRoXozwbPTjKZ-hat00nEBWDbcfo7Uu4Dp-N2zQVyLGOklQVGeaHrnaAVQOrm6pCgSCWS7jzWsANZaIBD6inN4mna9_Q1125cWDI_bfvzmwQBeHGfMttbtvI499ffpT3OU2vU2pccJPMLbvh7YIdCQaC_N_jj0Ai0mx9nh46Tz-On1GDIApvrlY4JPqn2CpF3EXT2Lxk6hp83NlRCx2LN6ixZohSyS9ZmcroYBiuCNEpAL2Iy8_UYep_wkNXbczWWhmFg.jpg"],"videoUrl":null,"reactions":[{"emoji":"⭐","customEmojiId":null,"emojiImageUrl":null,"isPaid":true,"count":3},{"emoji":null,"customEmojiId":"5400182803553853382","emojiImageUrl":null,"isPaid":false,"count":266},{"emoji":null,"customEmojiId":"5427233156124131061","emojiImageUrl":null,"isPaid":false,"count":195},{"emoji":null,"customEmojiId":"5296769225245861798","emojiImageUrl":null,"isPaid":false,"count":97},{"emoji":null,"customEmojiId":"5424972470023104089","emojiImageUrl":null,"isPaid":false,"count":84},{"emoji":"⭐️","customEmojiId":"5427086749278943412","emojiImageUrl":null,"isPaid":false,"count":46},{"emoji":"❤","customEmojiId":null,"emojiImageUrl":null,"isPaid":false,"count":26},{"emoji":"👍","customEmojiId":null,"emojiImageUrl":null,"isPaid":false,"count":23},{"emoji":"🆒","customEmojiId":null,"emojiImageUrl":null,"isPaid":false,"count":21},{"emoji":null,"customEmojiId":"5296615048804837674","emojiImageUrl":null,"isPaid":false,"count":18},{"emoji":"🤣","customEmojiId":null,"emojiImageUrl":null,"isPaid":false,"count":12},{"emoji":"🔥","customEmojiId":null,"emojiImageUrl":null,"isPaid":false,"count":10}]}},"meta":{"requestId":"req_01example_post","creditsCharged":1,"version":"v1"}}},"not_found":{"value":{"data":{"lookupStatus":"not_found","post":null},"meta":{"requestId":"req_01example_nf","creditsCharged":1,"version":"v1"}}},"restricted":{"value":{"data":{"lookupStatus":"restricted","post":null},"meta":{"requestId":"req_01example_post_restricted","creditsCharged":1,"version":"v1"}}}}}}},"400":{"description":"Invalid handle or post ID","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."}},"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."}},"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."}},"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."}},"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.","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."}},"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."}},"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/web/markdown":{"get":{"tags":["Web"],"summary":"Generate web page markdown","description":"Convert a web page into clean markdown.","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":2083,"description":"Web page URL to fetch."},"required":true,"description":"Web page URL to fetch.","name":"url","in":"query"},{"schema":{"type":"string","enum":["fit","raw","bm25"],"default":"fit","description":"Content filter strategy for markdown extraction."},"required":false,"description":"Content filter strategy for markdown extraction.","name":"filter","in":"query"},{"schema":{"type":"string","maxLength":500,"description":"Optional query string used by the bm25 filter to rank relevant content."},"required":false,"description":"Optional query string used by the bm25 filter to rank relevant content.","name":"query","in":"query"},{"schema":{"type":"string","enum":["enabled","bypass","write_only"],"default":"enabled","description":"Cache behavior. Defaults to enabled."},"required":false,"description":"Cache behavior. Defaults to enabled.","name":"cacheMode","in":"query"}],"responses":{"200":{"description":"Markdown extraction result. Check data.lookupStatus: found returns markdown; restricted means bot or access protection blocked the fetch (content fields are null).","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","restricted"],"description":"Whether page content could be extracted. Restricted means bot protection or similar access controls blocked automated fetching."},"url":{"type":"string","description":"URL that was fetched."},"status":{"type":"integer","nullable":true,"description":"HTTP status code reported for the page fetch when available; null when restricted."},"markdown":{"type":"object","nullable":true,"properties":{"raw":{"type":"string","description":"Primary markdown text extracted from the page."},"fit":{"type":"string","description":"Filtered markdown optimized for LLM consumption."},"withCitations":{"type":"string","description":"Markdown with numbered citations for outbound links."},"references":{"type":"string","description":"Reference list for cited links in the markdown output."}},"required":["raw"],"description":"Markdown content when lookupStatus is found; null when restricted."},"metadata":{"type":"object","additionalProperties":{"nullable":true},"description":"Page metadata such as title when available."}},"required":["lookupStatus","url","status","markdown"],"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":{"lookupStatus":"found","url":"https://www.socialfetch.dev/","status":200,"markdown":{"raw":"# Social media scraper API for every major platform.\nScrape profiles, posts, comments, videos, transcripts, and metrics from TikTok, Instagram, YouTube, X, LinkedIn, and more.","fit":"Social media scraper API for every major platform. Scrape profiles, posts, comments, videos, transcripts, and metrics from TikTok, Instagram, YouTube, X, LinkedIn, and more."}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}},"400":{"description":"Invalid query parameters or disallowed URL","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."}},"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."}},"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."}},"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."}},"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":"Extraction could not be completed.","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."}},"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."}},"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/web/html":{"get":{"tags":["Web"],"summary":"Generate web page HTML","description":"Fetch and return cleaned HTML for a web 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":2083,"description":"Web page URL to fetch."},"required":true,"description":"Web page URL to fetch.","name":"url","in":"query"}],"responses":{"200":{"description":"HTML extraction result. Check data.lookupStatus: found returns html; restricted means bot or access protection blocked the fetch (html is null).","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","restricted"],"description":"Whether page content could be extracted. Restricted means bot protection or similar access controls blocked automated fetching."},"url":{"type":"string","description":"URL that was fetched."},"status":{"type":"integer","nullable":true,"description":"HTTP status code reported for the page fetch when available; null when restricted."},"html":{"type":"string","nullable":true,"description":"Cleaned or processed HTML when lookupStatus is found; null when restricted."},"metadata":{"type":"object","additionalProperties":{"nullable":true},"description":"Page metadata such as title when available."}},"required":["lookupStatus","url","status","html"],"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":{"lookupStatus":"found","url":"https://www.socialfetch.dev/","status":200,"html":"<html lang=\"en\"><head><title>Social Fetch — Social Media Scraper API</title></head><body><h1>Social media scraper API for every major platform.</h1></body></html>"},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}},"400":{"description":"Invalid query parameters or disallowed URL","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."}},"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."}},"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."}},"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."}},"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":"Extraction could not be completed.","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."}},"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."}},"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/web/ask":{"get":{"tags":["Web"],"summary":"Ask a question about a web page","description":"Ask a natural-language question about a web page and get an LLM-generated answer.","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":2083,"description":"Web page URL to fetch."},"required":true,"description":"Web page URL to fetch.","name":"url","in":"query"},{"schema":{"type":"string","minLength":1,"maxLength":500,"description":"Natural-language question to answer about the page content."},"required":true,"description":"Natural-language question to answer about the page content.","name":"q","in":"query"}],"responses":{"200":{"description":"LLM answer for the question about the page. Check data.lookupStatus: found returns answer; restricted means bot or access protection blocked the fetch (answer is null).","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"lookupStatus":{"type":"string","enum":["found","restricted"],"description":"Whether page content could be extracted. Restricted means bot protection or similar access controls blocked automated fetching."},"url":{"type":"string","description":"URL that was analyzed."},"answer":{"type":"string","nullable":true,"description":"LLM-generated answer when lookupStatus is found; null when restricted."}},"required":["lookupStatus","url","answer"],"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":{"lookupStatus":"found","url":"https://www.socialfetch.dev/","answer":"This page is about Social Fetch, a social media scraper API that lets developers scrape profiles, posts, comments, videos, transcripts, and metrics from major platforms through a unified API with pay-as-you-go credits."},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}},"400":{"description":"Invalid query parameters or disallowed URL","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."}},"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."}},"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."}},"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."}},"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":"Answer could not be produced.","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."}},"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."}},"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/web/crawl":{"get":{"tags":["Web"],"summary":"Crawl web pages","description":"Crawl a small set of web pages synchronously.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":1,"surcharges":[],"maxCredits":5,"normalizationFailureCredits":0,"batch":{"maxUnits":5,"unit":"url"}},"x-socialfetch-credits-pricing":"1 credit per URL requested. Up to 5 URLs per request (5 credits max).","parameters":[{"schema":{"type":"array","items":{"type":"string","minLength":1,"maxLength":2083,"description":"Web page URL to fetch."},"minItems":1,"maxItems":5,"description":"URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5)."},"required":true,"description":"URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).","name":"url","in":"query"}],"responses":{"200":{"description":"Crawl results.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string","description":"Final URL associated with this crawl result."},"status":{"type":"integer","description":"HTTP status code reported for the page fetch."},"success":{"type":"boolean","description":"Whether the page was crawled successfully."},"markdown":{"type":"object","properties":{"raw":{"type":"string","description":"Raw markdown for the crawled page."},"fit":{"type":"string","description":"Filtered markdown for the crawled page."}},"description":"Markdown extracted from the page when available."},"html":{"type":"string","description":"HTML content for the page when returned by the crawler."},"metadata":{"type":"object","additionalProperties":{"nullable":true},"description":"Page metadata such as title or description when available."},"errorMessage":{"type":"string","description":"Provider error message when the page crawl failed."}},"required":["url","status","success"],"description":"Result for one URL in a crawl batch."},"description":"Per-URL crawl results."},"summary":{"type":"object","properties":{"requestedUrls":{"type":"integer","minimum":0,"description":"Number of URLs requested in the crawl batch."},"succeeded":{"type":"integer","minimum":0,"description":"Number of URLs that crawled successfully."},"failed":{"type":"integer","minimum":0,"description":"Number of URLs that failed to crawl."}},"required":["requestedUrls","succeeded","failed"],"description":"Summary counts for the crawl batch."}},"required":["results","summary"],"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":{"results":[{"url":"https://www.socialfetch.dev/","status":200,"success":true,"markdown":{"raw":"# Social media scraper API for every major platform.","fit":"Social media scraper API for every major platform."}}],"summary":{"requestedUrls":1,"succeeded":1,"failed":0}},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}}}},"400":{"description":"Invalid query parameters or disallowed URL","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."}},"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."}},"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."}},"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."}},"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":"Crawl could not be completed.","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."}},"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."}},"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/web/search":{"get":{"tags":["Web"],"summary":"Search the web","description":"Search the public web and return ranked organic results with snippets.","security":[{"ApiKeyAuth":[]}],"x-socialfetch-pricing":{"version":1,"baseCredits":1,"surcharges":[],"maxCredits":1,"normalizationFailureCredits":0},"x-socialfetch-credits-pricing":"1 credit per successful request.","parameters":[{"schema":{"type":"string","minLength":1,"maxLength":500,"description":"Search query text to run against the public web."},"required":true,"description":"Search query text to run against the public web.","name":"query","in":"query"},{"schema":{"type":"string","pattern":"^[A-Za-z]{2}$","description":"2-letter country code for localized results (e.g. US, UK)."},"required":false,"description":"2-letter country code for localized results (e.g. US, UK).","name":"region","in":"query"},{"schema":{"type":"string","enum":["last-hour","last-day","last-week","last-month","last-year"],"description":"Optional filter by when results were posted."},"required":false,"description":"Optional filter by when results were posted.","name":"datePosted","in":"query"},{"schema":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Page number (1-based). Defaults to 1 when omitted."},"required":false,"description":"Page number (1-based). Defaults to 1 when omitted.","name":"page","in":"query"}],"responses":{"200":{"description":"Ranked web 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 executed."},"results":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","description":"Result page title."},"url":{"type":"string","format":"uri","description":"Result page URL."},"content":{"type":"string","description":"Relevant text snippet extracted from the result."}},"required":["title","url","content"],"description":"One ranked web search result."},"description":"Ranked search results."}},"required":["query","results"],"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":"Social media scraping API","results":[{"title":"Social Fetch — Social Media Scraper API for TikTok, Instagram, YouTube & X","url":"https://www.socialfetch.dev","content":"Pull real-time data from any social platform. One API. Profiles, posts, comments, videos, transcripts, and metrics — from TikTok, Instagram, YouTube, and 20+ platforms."},{"title":"Social Media Data Scraper APIs","url":"https://ensembledata.com","content":"With our social media scraping APIs, you can fetch user profiles, posts, comments, replies, engagement metrics (likes, views, shares), hashtags, keywords, and brand mentions."}]},"meta":{"requestId":"req_01example","creditsCharged":1,"version":"v1"}}},"empty":{"value":{"data":{"query":"obscure query with no hits xyz123","results":[]},"meta":{"requestId":"req_01websearch_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."}},"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."}},"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."}},"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."}},"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":"Search results could not be produced.","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."}},"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."}},"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"}}}}}}}}}}