Skip to main content
GET
/
v1
/
tiktok
/
product
/
reviews
/
analytics
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/tiktok/product/reviews/analytics' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
import requests

response = requests.get(
'https://api.keyapi.ai/v1/tiktok/product/reviews/analytics',
params={},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())
const response = await fetch('https://api.keyapi.ai/v1/tiktok/product/reviews/analytics',
{
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
}
);
const data = await response.json();
console.log(data);
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "display_text": "Soft, smooth",
      "product_id": "1729471493154312768",
      "rating": 5,
      "review_id": "7392963066264504106",
      "review_timestamp": 1721308360410,
      "sku_id": "1729471493154378304",
      "sku_specification": "Item: one-size, Pink"
    }
  ],
  "requestId": "3c779a2c-f3b8-4393-9e11-243916dd32df"
}
{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}
{
"code": 401,
"data": null,
"message": "apiKey is null"
}
{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}
{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}
{
"code": 500,
"data": null,
"message": "Internal server error"
}
🪙1 creditper request

Copy for AI

🤖 Why Code When AI Can Do It For You?

Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.

Authorizations

Authorization
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx Get your API key from the Dashboard.

Query Parameters

product_id
string
required

Product unique ID

page_num
integer
required

Page numbers start from 1 and go up to a maximum of 100,000.

page_size
integer
required

The maximum number of pages is 10.

Response

Success

code
integer
required
message
string
required
data
object[]
required
requestId
string
required