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>"
}Comprobar shadowban
Comprueba si una cuenta de Twitter/X tiene restricciones de visibilidad. Realiza dos comprobaciones independientes: search_suggestion_ban, que indica si aparece en las sugerencias al escribir su nombre de usuario exacto, y search_ban, que indica si sus publicaciones aparecen en los resultados de búsqueda. Cada comprobación devuelve clean, banned o unknown. unknown incluye un reason y significa que no se pudo realizar la comprobación, nunca que la cuenta esté restringida. is_shadowbanned solo es true cuando al menos una comprobación detecta una restricción real. Las propiedades del perfil (protected, possibly_sensitive) se informan por separado y nunca se consideran un shadowban. Los resultados se almacenan en caché durante una hora; consulta checked_at para conocer su antigüedad.
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>"
}Autorizaciones
Parámetros de consulta
Nombre de usuario en Twitter/X (sin @).
Respuesta
OK
Show child attributes
Show child attributes
Momento en que se realizó la comprobación. Los resultados se almacenan en caché, por lo que puede ser anterior a la solicitud.
"2026-08-01T10:00:00Z"
Show child attributes
Show child attributes
true cuando al menos una comprobación detectó una restricción. Las comprobaciones con resultado unknown no se cuentan.
false
"44196397"
"elonmusk"
¿Esta página le ayudó?