List Hacker News watch events
curl --request GET \
--url https://api.nephia.cc/v1/hackernews/watches/{id}/events \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nephia.cc/v1/hackernews/watches/{id}/events"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nephia.cc/v1/hackernews/watches/{id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nephia.cc/v1/hackernews/watches/{id}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nephia.cc/v1/hackernews/watches/{id}/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nephia.cc/v1/hackernews/watches/{id}/events")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nephia.cc/v1/hackernews/watches/{id}/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"events": [
{
"id": "<string>",
"watchId": "<string>",
"type": "listing.created",
"listing": {
"id": "<string>",
"source": "vinted",
"market": "<string>",
"title": "<string>",
"price": 123,
"currency": "<string>",
"brand": "<string>",
"size": "<string>",
"status": "<string>",
"color1": "<string>",
"color2": "<string>",
"description": "<string>",
"photos": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"url": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"isReserved": true,
"favouriteCount": 123,
"viewCount": 123,
"seller": {
"id": "<string>",
"login": "<string>",
"feedbackScore": 123,
"feedbackCount": 123,
"photoUrl": "<string>",
"business": true,
"countryCode": "<string>",
"city": "<string>",
"country": "<string>",
"positiveFeedbackCount": 123,
"neutralFeedbackCount": 123,
"negativeFeedbackCount": 123,
"itemCount": 123,
"totalItemsCount": 123,
"followersCount": 123,
"followingCount": 123,
"isOnline": true,
"isOnHoliday": true,
"lastLoggedOnAt": "<string>",
"profileUrl": "<string>",
"locale": "<string>"
},
"sourceMetadata": {}
},
"previousPrice": 123,
"occurredAt": "<string>",
"tweet": {
"id": "<string>",
"text": "<string>",
"createdAt": "<string>",
"lang": "<string>",
"url": "<string>",
"author": {
"id": "<string>",
"username": "<string>",
"displayName": "<string>",
"profileImageUrl": "<string>",
"verified": true,
"isBlueVerified": true
},
"metrics": {
"likes": 123,
"replies": 123,
"retweets": 123,
"quotes": 123,
"views": 123,
"bookmarks": 123
},
"media": [
{
"type": "photo",
"url": "<string>",
"previewUrl": "<string>",
"width": 123,
"height": 123,
"durationMs": 123,
"variants": [
{
"url": "<string>",
"contentType": "<string>",
"bitrate": 123
}
]
}
],
"entities": {
"urls": [
{
"url": "<string>",
"expandedUrl": "<string>",
"displayUrl": "<string>"
}
],
"mentions": [
{
"id": "<string>",
"username": "<string>",
"name": "<string>"
}
],
"hashtags": [
{
"text": "<string>"
}
],
"cashtags": [
{
"text": "<string>"
}
]
},
"quotedTweet": null,
"retweetedTweet": null,
"inReplyToTweetId": "<string>",
"inReplyToUserId": "<string>",
"inReplyToUsername": "<string>",
"conversationId": "<string>",
"displayTextRange": "<array>",
"source": "<string>",
"possiblySensitive": true,
"poll": {
"choices": [
{
"label": "<string>",
"votes": 123
}
],
"endAt": "<string>",
"countsAreFinal": true
},
"card": {
"type": "<string>",
"url": "<string>",
"title": "<string>",
"description": "<string>",
"imageUrl": "<string>"
},
"communityNote": {
"text": "<string>",
"title": "<string>"
},
"editControl": {
"editTweetIds": [
"<string>"
],
"editableUntilMs": 123,
"editsRemaining": 123,
"isEditEligible": true
}
},
"post": {
"id": "<string>",
"fullname": "<string>",
"title": "<string>",
"selftext": "<string>",
"selftextHtml": "<string>",
"url": "<string>",
"permalink": "<string>",
"domain": "<string>",
"author": {
"id": "<string>",
"username": "<string>",
"fullname": "<string>"
},
"authorFlairText": "<string>",
"subreddit": "<string>",
"subredditPrefixed": "<string>",
"subredditId": "<string>",
"subredditSubscribers": 123,
"score": 123,
"ups": 123,
"upvoteRatio": 123,
"numComments": 123,
"numCrossposts": 123,
"gilded": 123,
"totalAwards": 123,
"awards": [
{
"id": "<string>",
"name": "<string>",
"count": 123,
"iconUrl": "<string>"
}
],
"createdAt": "<string>",
"editedAt": "<string>",
"isNsfw": true,
"isSelf": true,
"isSpoiler": true,
"isLocked": true,
"isStickied": true,
"isArchived": true,
"isOriginalContent": true,
"isVideo": true,
"isGallery": true,
"distinguished": "<string>",
"removedByCategory": "<string>",
"linkFlairText": "<string>",
"linkFlairBackgroundColor": "<string>",
"linkFlairTextColor": "<string>",
"linkFlairTemplateId": "<string>",
"thumbnail": "<string>",
"previewImages": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"kind": "post",
"parentPostId": "<string>",
"media": null,
"galleryData": null
},
"video": {
"id": "<string>",
"title": "<string>",
"description": "<string>",
"url": "<string>",
"channel": {
"id": "<string>",
"handle": "<string>",
"title": "<string>"
},
"publishedAt": "<string>",
"viewCount": 123,
"likeCount": 123,
"commentCount": 123,
"durationSeconds": 123,
"thumbnailUrl": "<string>",
"isShort": true,
"isLive": true
},
"blueskyPost": {
"id": "<string>",
"uri": "<string>",
"cid": "<string>",
"url": "<string>",
"text": "<string>",
"createdAt": "<string>",
"langs": [
"<string>"
],
"author": {
"did": "<string>",
"handle": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"metrics": {
"likes": 123,
"reposts": 123,
"replies": 123,
"quotes": 123
},
"embed": {
"kind": "images",
"images": [
{
"url": "<string>",
"thumbUrl": "<string>",
"alt": "<string>"
}
],
"external": {
"uri": "<string>",
"title": "<string>",
"description": "<string>",
"thumbUrl": "<string>"
}
},
"replyTo": "<string>",
"labels": [
"<string>"
]
},
"hnItem": {
"id": "<string>",
"type": "story",
"title": "<string>",
"url": "<string>",
"text": "<string>",
"author": "<string>",
"points": 123,
"numComments": 123,
"createdAt": "<string>",
"storyId": "<string>",
"parentId": "<string>",
"hnUrl": "<string>"
},
"article": {
"id": "<string>",
"url": "<string>",
"title": "<string>",
"summary": "<string>",
"publishedAt": "<string>",
"updatedAt": "<string>",
"author": "<string>",
"feed": {
"url": "<string>",
"title": "<string>"
},
"source": "<string>",
"imageUrl": "<string>",
"categories": [
"<string>"
]
},
"aiAnswer": {
"id": "<string>",
"source": "ai_answers",
"engine": "chatgpt",
"model": "<string>",
"prompt": "<string>",
"country": "<string>",
"answerText": "<string>",
"truncated": true,
"searched": true,
"citations": [
{
"url": "<string>",
"domain": "<string>",
"title": "<string>"
}
],
"mentions": [
{
"term": "<string>",
"mentioned": true,
"cited": true,
"count": 123
}
],
"askedAt": "<string>",
"latencyMs": 123,
"previous": {
"runId": "<string>",
"changed": "terms"
}
},
"status": {
"id": "<string>",
"uri": "<string>",
"url": "<string>",
"content": "<string>",
"spoilerText": "<string>",
"createdAt": "<string>",
"language": "<string>",
"instance": "<string>",
"author": {
"acct": "<string>",
"displayName": "<string>",
"url": "<string>",
"avatarUrl": "<string>",
"followersCount": 123,
"bot": true
},
"metrics": {
"replies": 123,
"reblogs": 123,
"favourites": 123
},
"tags": [
"<string>"
],
"mediaUrls": [
"<string>"
],
"sensitive": true
},
"lemmyPost": {
"id": "<string>",
"type": "post",
"title": "<string>",
"body": "<string>",
"linkUrl": "<string>",
"url": "<string>",
"apId": "<string>",
"createdAt": "<string>",
"instance": "<string>",
"author": {
"name": "<string>",
"displayName": "<string>",
"actorId": "<string>",
"avatarUrl": "<string>",
"bot": true
},
"community": {
"name": "<string>",
"title": "<string>",
"actorId": "<string>",
"qualifiedName": "<string>",
"nsfw": true
},
"metrics": {
"score": 123,
"upvotes": 123,
"downvotes": 123,
"comments": 123
},
"thumbnailUrl": "<string>",
"nsfw": true
},
"githubItem": {
"id": "<string>",
"type": "issue",
"title": "<string>",
"body": "<string>",
"url": "<string>",
"repo": "<string>",
"author": "<string>",
"state": "<string>",
"labels": [
"<string>"
],
"comments": 123,
"stars": 123,
"tag": "<string>",
"number": 123,
"createdAt": "<string>"
},
"launch": {
"id": "<string>",
"name": "<string>",
"tagline": "<string>",
"description": "<string>",
"url": "<string>",
"website": "<string>",
"slug": "<string>",
"votesCount": 123,
"commentsCount": 123,
"createdAt": "<string>",
"featuredAt": "<string>",
"thumbnailUrl": "<string>",
"topics": [
{
"name": "<string>",
"slug": "<string>"
}
],
"makers": [
"<string>"
]
},
"stackItem": {
"id": "<string>",
"type": "question",
"title": "<string>",
"body": "<string>",
"excerpt": "<string>",
"url": "<string>",
"tags": [
"<string>"
],
"score": 123,
"questionScore": 123,
"answerCount": 123,
"isAccepted": true,
"isAnswered": true,
"author": "<string>",
"authorUrl": "<string>",
"createdAt": "<string>",
"questionId": "<string>"
},
"tiktokVideo": {
"id": "<string>",
"caption": "<string>",
"url": "<string>",
"author": {
"id": "<string>",
"handle": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>",
"verified": true,
"followerCount": 123,
"url": "<string>"
},
"postedAt": "<string>",
"playCount": 123,
"likeCount": 123,
"commentCount": 123,
"shareCount": 123,
"collectCount": 123,
"durationSeconds": 123,
"coverUrl": "<string>",
"hashtags": [
"<string>"
],
"mentions": [
"<string>"
],
"musicTitle": "<string>",
"musicAuthor": "<string>",
"region": "<string>",
"language": "<string>",
"isSlideshow": true,
"isAigc": true,
"isAd": true
},
"publishedAt": "<string>",
"sentiment": "positive",
"analysis": {
"sentiment": "positive",
"intent": "purchase_intent"
},
"seeded": true
}
]
}{
"error": "<string>",
"code": "<string>"
}{
"error": "Rate limit exceeded",
"code": "TOO_MANY_REQUESTS"
}Watches
List Hacker News watch events
Replay events since an ISO timestamp. Ordered newest first. Free — does not charge credits.
GET
/
v1
/
hackernews
/
watches
/
{id}
/
events
List Hacker News watch events
curl --request GET \
--url https://api.nephia.cc/v1/hackernews/watches/{id}/events \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nephia.cc/v1/hackernews/watches/{id}/events"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nephia.cc/v1/hackernews/watches/{id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nephia.cc/v1/hackernews/watches/{id}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nephia.cc/v1/hackernews/watches/{id}/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nephia.cc/v1/hackernews/watches/{id}/events")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nephia.cc/v1/hackernews/watches/{id}/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"events": [
{
"id": "<string>",
"watchId": "<string>",
"type": "listing.created",
"listing": {
"id": "<string>",
"source": "vinted",
"market": "<string>",
"title": "<string>",
"price": 123,
"currency": "<string>",
"brand": "<string>",
"size": "<string>",
"status": "<string>",
"color1": "<string>",
"color2": "<string>",
"description": "<string>",
"photos": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"url": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"isReserved": true,
"favouriteCount": 123,
"viewCount": 123,
"seller": {
"id": "<string>",
"login": "<string>",
"feedbackScore": 123,
"feedbackCount": 123,
"photoUrl": "<string>",
"business": true,
"countryCode": "<string>",
"city": "<string>",
"country": "<string>",
"positiveFeedbackCount": 123,
"neutralFeedbackCount": 123,
"negativeFeedbackCount": 123,
"itemCount": 123,
"totalItemsCount": 123,
"followersCount": 123,
"followingCount": 123,
"isOnline": true,
"isOnHoliday": true,
"lastLoggedOnAt": "<string>",
"profileUrl": "<string>",
"locale": "<string>"
},
"sourceMetadata": {}
},
"previousPrice": 123,
"occurredAt": "<string>",
"tweet": {
"id": "<string>",
"text": "<string>",
"createdAt": "<string>",
"lang": "<string>",
"url": "<string>",
"author": {
"id": "<string>",
"username": "<string>",
"displayName": "<string>",
"profileImageUrl": "<string>",
"verified": true,
"isBlueVerified": true
},
"metrics": {
"likes": 123,
"replies": 123,
"retweets": 123,
"quotes": 123,
"views": 123,
"bookmarks": 123
},
"media": [
{
"type": "photo",
"url": "<string>",
"previewUrl": "<string>",
"width": 123,
"height": 123,
"durationMs": 123,
"variants": [
{
"url": "<string>",
"contentType": "<string>",
"bitrate": 123
}
]
}
],
"entities": {
"urls": [
{
"url": "<string>",
"expandedUrl": "<string>",
"displayUrl": "<string>"
}
],
"mentions": [
{
"id": "<string>",
"username": "<string>",
"name": "<string>"
}
],
"hashtags": [
{
"text": "<string>"
}
],
"cashtags": [
{
"text": "<string>"
}
]
},
"quotedTweet": null,
"retweetedTweet": null,
"inReplyToTweetId": "<string>",
"inReplyToUserId": "<string>",
"inReplyToUsername": "<string>",
"conversationId": "<string>",
"displayTextRange": "<array>",
"source": "<string>",
"possiblySensitive": true,
"poll": {
"choices": [
{
"label": "<string>",
"votes": 123
}
],
"endAt": "<string>",
"countsAreFinal": true
},
"card": {
"type": "<string>",
"url": "<string>",
"title": "<string>",
"description": "<string>",
"imageUrl": "<string>"
},
"communityNote": {
"text": "<string>",
"title": "<string>"
},
"editControl": {
"editTweetIds": [
"<string>"
],
"editableUntilMs": 123,
"editsRemaining": 123,
"isEditEligible": true
}
},
"post": {
"id": "<string>",
"fullname": "<string>",
"title": "<string>",
"selftext": "<string>",
"selftextHtml": "<string>",
"url": "<string>",
"permalink": "<string>",
"domain": "<string>",
"author": {
"id": "<string>",
"username": "<string>",
"fullname": "<string>"
},
"authorFlairText": "<string>",
"subreddit": "<string>",
"subredditPrefixed": "<string>",
"subredditId": "<string>",
"subredditSubscribers": 123,
"score": 123,
"ups": 123,
"upvoteRatio": 123,
"numComments": 123,
"numCrossposts": 123,
"gilded": 123,
"totalAwards": 123,
"awards": [
{
"id": "<string>",
"name": "<string>",
"count": 123,
"iconUrl": "<string>"
}
],
"createdAt": "<string>",
"editedAt": "<string>",
"isNsfw": true,
"isSelf": true,
"isSpoiler": true,
"isLocked": true,
"isStickied": true,
"isArchived": true,
"isOriginalContent": true,
"isVideo": true,
"isGallery": true,
"distinguished": "<string>",
"removedByCategory": "<string>",
"linkFlairText": "<string>",
"linkFlairBackgroundColor": "<string>",
"linkFlairTextColor": "<string>",
"linkFlairTemplateId": "<string>",
"thumbnail": "<string>",
"previewImages": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"kind": "post",
"parentPostId": "<string>",
"media": null,
"galleryData": null
},
"video": {
"id": "<string>",
"title": "<string>",
"description": "<string>",
"url": "<string>",
"channel": {
"id": "<string>",
"handle": "<string>",
"title": "<string>"
},
"publishedAt": "<string>",
"viewCount": 123,
"likeCount": 123,
"commentCount": 123,
"durationSeconds": 123,
"thumbnailUrl": "<string>",
"isShort": true,
"isLive": true
},
"blueskyPost": {
"id": "<string>",
"uri": "<string>",
"cid": "<string>",
"url": "<string>",
"text": "<string>",
"createdAt": "<string>",
"langs": [
"<string>"
],
"author": {
"did": "<string>",
"handle": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"metrics": {
"likes": 123,
"reposts": 123,
"replies": 123,
"quotes": 123
},
"embed": {
"kind": "images",
"images": [
{
"url": "<string>",
"thumbUrl": "<string>",
"alt": "<string>"
}
],
"external": {
"uri": "<string>",
"title": "<string>",
"description": "<string>",
"thumbUrl": "<string>"
}
},
"replyTo": "<string>",
"labels": [
"<string>"
]
},
"hnItem": {
"id": "<string>",
"type": "story",
"title": "<string>",
"url": "<string>",
"text": "<string>",
"author": "<string>",
"points": 123,
"numComments": 123,
"createdAt": "<string>",
"storyId": "<string>",
"parentId": "<string>",
"hnUrl": "<string>"
},
"article": {
"id": "<string>",
"url": "<string>",
"title": "<string>",
"summary": "<string>",
"publishedAt": "<string>",
"updatedAt": "<string>",
"author": "<string>",
"feed": {
"url": "<string>",
"title": "<string>"
},
"source": "<string>",
"imageUrl": "<string>",
"categories": [
"<string>"
]
},
"aiAnswer": {
"id": "<string>",
"source": "ai_answers",
"engine": "chatgpt",
"model": "<string>",
"prompt": "<string>",
"country": "<string>",
"answerText": "<string>",
"truncated": true,
"searched": true,
"citations": [
{
"url": "<string>",
"domain": "<string>",
"title": "<string>"
}
],
"mentions": [
{
"term": "<string>",
"mentioned": true,
"cited": true,
"count": 123
}
],
"askedAt": "<string>",
"latencyMs": 123,
"previous": {
"runId": "<string>",
"changed": "terms"
}
},
"status": {
"id": "<string>",
"uri": "<string>",
"url": "<string>",
"content": "<string>",
"spoilerText": "<string>",
"createdAt": "<string>",
"language": "<string>",
"instance": "<string>",
"author": {
"acct": "<string>",
"displayName": "<string>",
"url": "<string>",
"avatarUrl": "<string>",
"followersCount": 123,
"bot": true
},
"metrics": {
"replies": 123,
"reblogs": 123,
"favourites": 123
},
"tags": [
"<string>"
],
"mediaUrls": [
"<string>"
],
"sensitive": true
},
"lemmyPost": {
"id": "<string>",
"type": "post",
"title": "<string>",
"body": "<string>",
"linkUrl": "<string>",
"url": "<string>",
"apId": "<string>",
"createdAt": "<string>",
"instance": "<string>",
"author": {
"name": "<string>",
"displayName": "<string>",
"actorId": "<string>",
"avatarUrl": "<string>",
"bot": true
},
"community": {
"name": "<string>",
"title": "<string>",
"actorId": "<string>",
"qualifiedName": "<string>",
"nsfw": true
},
"metrics": {
"score": 123,
"upvotes": 123,
"downvotes": 123,
"comments": 123
},
"thumbnailUrl": "<string>",
"nsfw": true
},
"githubItem": {
"id": "<string>",
"type": "issue",
"title": "<string>",
"body": "<string>",
"url": "<string>",
"repo": "<string>",
"author": "<string>",
"state": "<string>",
"labels": [
"<string>"
],
"comments": 123,
"stars": 123,
"tag": "<string>",
"number": 123,
"createdAt": "<string>"
},
"launch": {
"id": "<string>",
"name": "<string>",
"tagline": "<string>",
"description": "<string>",
"url": "<string>",
"website": "<string>",
"slug": "<string>",
"votesCount": 123,
"commentsCount": 123,
"createdAt": "<string>",
"featuredAt": "<string>",
"thumbnailUrl": "<string>",
"topics": [
{
"name": "<string>",
"slug": "<string>"
}
],
"makers": [
"<string>"
]
},
"stackItem": {
"id": "<string>",
"type": "question",
"title": "<string>",
"body": "<string>",
"excerpt": "<string>",
"url": "<string>",
"tags": [
"<string>"
],
"score": 123,
"questionScore": 123,
"answerCount": 123,
"isAccepted": true,
"isAnswered": true,
"author": "<string>",
"authorUrl": "<string>",
"createdAt": "<string>",
"questionId": "<string>"
},
"tiktokVideo": {
"id": "<string>",
"caption": "<string>",
"url": "<string>",
"author": {
"id": "<string>",
"handle": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>",
"verified": true,
"followerCount": 123,
"url": "<string>"
},
"postedAt": "<string>",
"playCount": 123,
"likeCount": 123,
"commentCount": 123,
"shareCount": 123,
"collectCount": 123,
"durationSeconds": 123,
"coverUrl": "<string>",
"hashtags": [
"<string>"
],
"mentions": [
"<string>"
],
"musicTitle": "<string>",
"musicAuthor": "<string>",
"region": "<string>",
"language": "<string>",
"isSlideshow": true,
"isAigc": true,
"isAd": true
},
"publishedAt": "<string>",
"sentiment": "positive",
"analysis": {
"sentiment": "positive",
"intent": "purchase_intent"
},
"seeded": true
}
]
}{
"error": "<string>",
"code": "<string>"
}{
"error": "Rate limit exceeded",
"code": "TOO_MANY_REQUESTS"
}Was this page helpful?