List comments on a TikTok video by URL
List comments on a TikTok video by URL.
14000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-15
updated
Provider
api.socialfetch.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x02C2fCAfCe36B4AAdB39625866Bc6B1699d83043",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "14000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://www.tiktok.com/@mrbeast/video/7596844935442189598"
},
"type": "http"
},
"output": {
"example": {
"data": {
"comments": [
{
"author": {
"avatarUrl": null,
"displayName": null,
"handle": null,
"platformUserId": null,
"secUid": null
},
"createdAt": "2025-12-25T15:55:32.000Z",
"id": "7587824764670083847",
"language": "en",
"likes": 81,
"replyCount": 4,
"text": "People still compare this to angel Reese 🥀"
}
],
"lookupStatus": "found",
"page": {
"hasMore": true,
"nextCursor": "20"
},
"totalComments": 271
},
"meta": {
"creditsCharged": 1,
"requestId": "req_06b2ef8c-b3de-49e1-abaf-f3aadb6738f1",
"version": "v1"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"cursor": {
"description": "Opaque cursor from a previous response to fetch the next page.",
"minLength": 1,
"type": "string"
},
"trim": {
"anyOf": [
{
"type": "boolean"
},
{
"enum": [
"0",
"1",
"true",
"false"
],
"type": "string"
}
],
"description": "When true, returns a smaller response with fewer fields."
},
"url": {
"description": "Link to the TikTok video whose comments should be listed.",
"maxLength": 4096,
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.socialfetch.dev/v1/tiktok/videos/comments" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.socialfetch.dev/v1/tiktok/videos/comments");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.socialfetch.dev/v1/tiktok/videos/comments")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3080.json, and this resource appears in /discovery/resources and /discovery/search.