Get comments on a Snapchat Spotlight video
curl --request GET \
--url https://api.scraperize.com/v1/snapchat/spotlight/comments \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/snapchat/spotlight/comments"
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.scraperize.com/v1/snapchat/spotlight/comments', 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.scraperize.com/v1/snapchat/spotlight/comments",
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.scraperize.com/v1/snapchat/spotlight/comments"
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.scraperize.com/v1/snapchat/spotlight/comments")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/snapchat/spotlight/comments")
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{
"data": {
"comments": [
{
"id": "13110868629173587475_12982078970805792552",
"text": "Hello my dear how are you doing,You’re having a direct conversation with me Elon musk🇺🇸❤️🚀💗",
"authorDisplayName": "Elon Space X 🩷🇺🇸🚘",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvdjI5aWlJQ0E0dGRyRkNsVzZmaWl6P2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 321,
"replyCount": 61,
"timestamp": "2026-08-08T22:18:12.926Z",
"updatedAt": "2026-08-08T22:18:12.926Z",
"rankingScore": 1000
},
{
"id": "13376388470259466268_11779197914746971007",
"text": "I really enjoy your posts and always look forward to them. 😊 I’ve tried to send you a friend request a few times, but it hasn’t worked. If you have a moment, I’d be so happy if you could send me a request instead. Thanks! ❤",
"authorDisplayName": "John Clifford",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvUWlBUzcwZE9McFZ4WTRFcG83V3ZQP2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 310,
"replyCount": 60,
"timestamp": "2026-08-17T05:53:34.719Z",
"updatedAt": "2026-08-17T05:53:34.719Z",
"rankingScore": 980
},
{
"id": "11218224969612544629_10601912820377560041",
"text": "Hey who's from las Vegas here",
"authorDisplayName": "Frank Eric",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvMkR1NHNENXV6a0d2dnlKa1cyNHd2P2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 217,
"replyCount": 72,
"timestamp": "2026-08-23T14:04:12.330Z",
"updatedAt": "2026-08-23T14:04:12.330Z",
"rankingScore": 960
}
],
"count": 25,
"paging": {
"cursor": "CAESVNf5p5sHtvCVugPXp_qDBsiLwT6owqSFBbH76sQOs-f0gAyu8_PCCMWkxLwLlr_npAbvpILkC76PxuQEmfWxpg_HhYqkAZ-cheUJlu_unAzel-miCRqDAhKAAkNyMEJDZzBLQW5SekVnY0loTzZSOVlrMEVxY0JhaGR6Zm1SbGJIUmhMV1p2Y21ObExXNWhiVFV0Y0hKdlpIS0xBUXNTRUZOd2IzUnNhV2RvZEZKbGNHeHBaWE1pTzFjM1gwVkViRmhYVkVKcFdFRkZSVzVwVG05TlVIZEJRVmxqVjBveFpFZGFlRmx0TVd0QldpMDJWMFZYWTBGYUxUWlhRVEppUVVGQlFVRjNEQXNTRUZOd2IzUnNhV2RvZEZKbGNHeHBaWE1pSkRBMVlUVmxaREk0TFdWbFl6Y3ROR00wT0MwNU4yRTBMV1JqT1RCaE0yWTBOakkwWmd3WUFDQUI",
"hasMore": true
},
"fetchedAt": "2026-09-14T12:14:55.650Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "BAD_REQUEST",
"message": "The request was invalid.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Snapchat
Get comments on a Snapchat Spotlight video
Fetches the comments on a public Snapchat Spotlight video by URL — each with its text, author (display name + avatar), reaction count, threaded-reply count, and timestamp. Paginated via an opaque cursor.
GET
/
v1
/
snapchat
/
spotlight
/
comments
Get comments on a Snapchat Spotlight video
curl --request GET \
--url https://api.scraperize.com/v1/snapchat/spotlight/comments \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/snapchat/spotlight/comments"
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.scraperize.com/v1/snapchat/spotlight/comments', 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.scraperize.com/v1/snapchat/spotlight/comments",
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.scraperize.com/v1/snapchat/spotlight/comments"
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.scraperize.com/v1/snapchat/spotlight/comments")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/snapchat/spotlight/comments")
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{
"data": {
"comments": [
{
"id": "13110868629173587475_12982078970805792552",
"text": "Hello my dear how are you doing,You’re having a direct conversation with me Elon musk🇺🇸❤️🚀💗",
"authorDisplayName": "Elon Space X 🩷🇺🇸🚘",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvdjI5aWlJQ0E0dGRyRkNsVzZmaWl6P2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 321,
"replyCount": 61,
"timestamp": "2026-08-08T22:18:12.926Z",
"updatedAt": "2026-08-08T22:18:12.926Z",
"rankingScore": 1000
},
{
"id": "13376388470259466268_11779197914746971007",
"text": "I really enjoy your posts and always look forward to them. 😊 I’ve tried to send you a friend request a few times, but it hasn’t worked. If you have a moment, I’d be so happy if you could send me a request instead. Thanks! ❤",
"authorDisplayName": "John Clifford",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvUWlBUzcwZE9McFZ4WTRFcG83V3ZQP2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 310,
"replyCount": 60,
"timestamp": "2026-08-17T05:53:34.719Z",
"updatedAt": "2026-08-17T05:53:34.719Z",
"rankingScore": 980
},
{
"id": "11218224969612544629_10601912820377560041",
"text": "Hey who's from las Vegas here",
"authorDisplayName": "Frank Eric",
"authorAvatarUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvMkR1NHNENXV6a0d2dnlKa1cyNHd2P2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"likeCount": 217,
"replyCount": 72,
"timestamp": "2026-08-23T14:04:12.330Z",
"updatedAt": "2026-08-23T14:04:12.330Z",
"rankingScore": 960
}
],
"count": 25,
"paging": {
"cursor": "CAESVNf5p5sHtvCVugPXp_qDBsiLwT6owqSFBbH76sQOs-f0gAyu8_PCCMWkxLwLlr_npAbvpILkC76PxuQEmfWxpg_HhYqkAZ-cheUJlu_unAzel-miCRqDAhKAAkNyMEJDZzBLQW5SekVnY0loTzZSOVlrMEVxY0JhaGR6Zm1SbGJIUmhMV1p2Y21ObExXNWhiVFV0Y0hKdlpIS0xBUXNTRUZOd2IzUnNhV2RvZEZKbGNHeHBaWE1pTzFjM1gwVkViRmhYVkVKcFdFRkZSVzVwVG05TlVIZEJRVmxqVjBveFpFZGFlRmx0TVd0QldpMDJWMFZYWTBGYUxUWlhRVEppUVVGQlFVRjNEQXNTRUZOd2IzUnNhV2RvZEZKbGNHeHBaWE1pSkRBMVlUVmxaREk0TFdWbFl6Y3ROR00wT0MwNU4yRTBMV1JqT1RCaE0yWTBOakkwWmd3WUFDQUI",
"hasMore": true
},
"fetchedAt": "2026-09-14T12:14:55.650Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "BAD_REQUEST",
"message": "The request was invalid.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Authorizations
Your API key. Send it in the x-api-key header (or Authorization: Bearer <key>). Create and manage keys from your dashboard.
Query Parameters
Snapchat Spotlight URL, e.g. https://www.snapchat.com/spotlight/.
Pagination cursor from a previous response's paging.cursor.
Optional. Return a cached result if one this age or newer exists — served for 0 credits with meta.cached=true and meta.cachedAt. Otherwise a fresh scrape runs (1 credit) and refreshes the cache. Omit to always scrape fresh.
Available options:
1d, 3d, 7d, 14d, 30d