/v1/followers
The Scratchers who follow a user
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/scratch-api/v1/followers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scratch-api/v1/followers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scratch-api/v1/followers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/scratch-api/v1/followers",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 20,
"username": "griffpatch",
"followers": [
{
"id": 173876040,
"image": "https://cdn2.scratch.mit.edu/get_image/user/173876040_90x90.png?v=",
"joined": "2026-06-13T13:56:33.000Z",
"country": "Japan",
"username": "mosimosiminnna1220",
"profile_url": "https://scratch.mit.edu/users/mosimosiminnna1220"
},
{
"id": 171801184,
"image": "https://cdn2.scratch.mit.edu/get_image/user/171801184_90x90.png?v=",
"joined": "2026-04-30T23:37:05.000Z",
"country": "Singapore",
"username": "meteorppel",
"profile_url": "https://scratch.mit.edu/users/meteorppel"
},
{
"id": 172216843,
"image": "https://cdn2.scratch.mit.edu/get_image/user/172216843_90x90.png?v=",
"joined": "2026-05-09T02:15:41.000Z",
"country": "United States",
"username": "someOLOGY",
"profile_url": "https://scratch.mit.edu/users/someOLOGY"
},
{
"id": 173869118,
"image": "https://cdn2.scratch.mit.edu/get_image/user/173869118_90x90.png?v=",
"joined": "2026-06-13T03:36:58.000Z",
"country": "Hong Kong",
"username": "NON-GEO",
"profile_url": "https://scratch.mit.edu/users/NON-GEO"
},
{
"id": 165841099,
"image": "https://cdn2.scratch.mit.edu/get_image/user/165841099_90x90.png?v=",
"joined": "2026-01-05T22:27:39.000Z",
"country": "Canada",
"username": "CoolCat85438",
"profile_url": "https://scratch.mit.edu/users/CoolCat85438"
},
{
"id": 165283785,
"image": "https://cdn2.scratch.mit.edu/get_image/user/165283785_90x90.png?v=",
"joined": "2025-12-13T16:33:28.000Z",
"country": "United Kingdom",
"username": "hellow112",
"profile_url": "https://scratch.mit.edu/users/hellow112"
},
{
"id": 173769468,
"image": "https://cdn2.scratch.mit.edu/get_image/user/173769468_90x90.png?v=",
"joined": "2026-06-11T19:15:40.000Z",
"country": "United States",
"username": "qnalxkc",
"profile_url": "https://scratch.mit.edu/users/qnalxkc"
},
{
"id": 173875432,
"image": "https://cdn2.scratch.mit.edu/get_image/user/173875432_90x90.png?v=",
"joined": "2026-06-13T13:10:58.000Z",
"country": "North Korea",
"username": "0x45D",
"profile_url": "https://scratch.mit.
…