シャドウバンの確認
curl --request GET \
--url https://api.sorsa.io/v3/check-shadowban \
--header 'ApiKey: <api-key>'import requests
url = "https://api.sorsa.io/v3/check-shadowban"
headers = {"ApiKey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {ApiKey: '<api-key>'}};
fetch('https://api.sorsa.io/v3/check-shadowban', 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.sorsa.io/v3/check-shadowban",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"ApiKey: <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.sorsa.io/v3/check-shadowban"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("ApiKey", "<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.sorsa.io/v3/check-shadowban")
.header("ApiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sorsa.io/v3/check-shadowban")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["ApiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"account": {
"possibly_sensitive": false,
"protected": false,
"statuses_count": 41230
},
"checked_at": "2026-08-01T10:00:00Z",
"checks": {
"search_ban": {
"reason": "no_tweets",
"status": "clean",
"tweets_found": 18
},
"search_suggestion_ban": {
"reason": "no_tweets",
"status": "clean",
"tweets_found": 18
}
},
"is_shadowbanned": false,
"user_id": "44196397",
"username": "elonmusk"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}アクションの確認
シャドウバンの確認
Twitter/Xアカウントの表示制限を確認します。正確なユーザー名を入力したときの検索候補への表示(search_suggestion_ban)と、投稿が検索されるか(search_ban)を独立して測定します。結果はclean、banned、unknownです。unknownはreasonを伴い、測定できなかったことを示すもので、制限の判定ではありません。少なくとも1つで実際の制限が見つかった場合だけis_shadowbannedがtrueになります。protectedとpossibly_sensitiveは別に報告され、シャドウバンには数えません。結果は1時間キャッシュされます。データの時刻はchecked_atを確認してください。
GET
/
check-shadowban
シャドウバンの確認
curl --request GET \
--url https://api.sorsa.io/v3/check-shadowban \
--header 'ApiKey: <api-key>'import requests
url = "https://api.sorsa.io/v3/check-shadowban"
headers = {"ApiKey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {ApiKey: '<api-key>'}};
fetch('https://api.sorsa.io/v3/check-shadowban', 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.sorsa.io/v3/check-shadowban",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"ApiKey: <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.sorsa.io/v3/check-shadowban"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("ApiKey", "<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.sorsa.io/v3/check-shadowban")
.header("ApiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sorsa.io/v3/check-shadowban")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["ApiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"account": {
"possibly_sensitive": false,
"protected": false,
"statuses_count": 41230
},
"checked_at": "2026-08-01T10:00:00Z",
"checks": {
"search_ban": {
"reason": "no_tweets",
"status": "clean",
"tweets_found": 18
},
"search_suggestion_ban": {
"reason": "no_tweets",
"status": "clean",
"tweets_found": 18
}
},
"is_shadowbanned": false,
"user_id": "44196397",
"username": "elonmusk"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}承認
クエリパラメータ
Twitter/Xユーザー名(@なし)。
このページは役に立ちましたか?