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>"
}Verificar shadowban
Verifica se uma conta do Twitter/X tem restrições de visibilidade. Realiza duas verificações independentes: search_suggestion_ban, que indica se a conta aparece nas sugestões ao digitar seu nome de usuário exato, e search_ban, que indica se suas publicações aparecem nos resultados de busca. Cada verificação retorna clean, banned ou unknown. unknown inclui um reason e significa que não foi possível realizar a verificação, nunca que a conta está restrita. is_shadowbanned só é true quando pelo menos uma verificação detecta uma restrição real. As propriedades do perfil (protected, possibly_sensitive) são informadas separadamente e nunca contam como shadowban. Os resultados ficam em cache por uma hora; consulte checked_at para saber a idade dos dados.
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>"
}Autorizações
Parâmetros de consulta
Nome de usuário no Twitter/X (sem @).
Resposta
OK
Show child attributes
Show child attributes
Momento em que a verificação foi realizada. Os resultados ficam em cache, por isso pode ser anterior à requisição.
"2026-08-01T10:00:00Z"
Show child attributes
Show child attributes
true quando pelo menos uma verificação detectou uma restrição. Verificações com resultado unknown nunca são contabilizadas.
false
"44196397"
"elonmusk"
Esta página foi útil?