Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
tiktok
/
video
TikTok Video
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/tiktok/video \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "aweme_detail": {}
  },
  "meta": {}
}

Parameters

url
string
required
The full TikTok video URL (e.g., https://tiktok.com/@user/video/123456789)

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/tiktok/video?url=https://tiktok.com/@stoolpresidente/video/7499229683859426602" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "aweme_detail": {
      "aweme_id": "7499229683859426602",
      "desc": "Pizza review time! #barstool #pizza",
      "author": {
        "unique_id": "stoolpresidente",
        "nickname": "Dave Portnoy",
        "avatar_thumb": {
          "url_list": ["https://p16-amd-va.tiktokcdn.com/avatar.jpg"]
        }
      },
      "statistics": {
        "play_count": 1500000,
        "digg_count": 85000,
        "comment_count": 1200,
        "share_count": 3500,
        "collect_count": 5000
      },
      "video": {
        "duration": 89000,
        "cover": {
          "url_list": ["https://example.com/cover.jpg"]
        }
      }
    }
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "video",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}