Tweet by id
API · /twitterx-api
Twitter / X API
Read public Twitter/X data in real time — no login or key needed. Look up any tweet by its id (or by its URL) and get the full tweet: text, author, created date, language, like/retweet/reply/quote/view counts, attached photos and videos, and any quoted tweet. Look up any public account by @handle for its profile — display name, bio, location, follower/following counts, tweet and media counts and avatar. Tweets are read from X's own official syndication endpoint (the source that powers embedded tweets); profiles via the public FixTweet service. Every call is live (no cache). 4 endpoints. Built for tweet/embed enrichment, brand and author monitoring and content back-ends. Note: X exposes no public search or timeline, so this reads single tweets and profiles. No upstream key, no cache.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 266 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,965
- attiva
- Chiamate totali
- 60
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,600 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,600 llamadas/mes
- 2 solicitudes/segundo
- Búsqueda de tweets y usuarios
- Sin tarjeta de crédito
Starter
€12.00 /mese
- 68,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 68k calls/month
- 8 req/sec
- Full tweet + media + stats
- Email support
Pro
€35.00 /mese
- 340,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 340k calls/month
- 20 req/sec
- Enrichment pipelines
- Priority support
Mega
€79.00 /mese
- 1,660,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1.66M calls/month
- 50 req/sec
- Monitoring scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Snowflake ID API
Decode and build snowflake IDs — the 64-bit, time-sortable identifiers used by Twitter/X, Discord, Instagram and many distributed systems. Pass an ID and a platform and the service extracts the embedded creation timestamp (turn any Discord, Twitter/X or Instagram ID into the exact moment it was created) along with the machine and sequence components for that platform's epoch and bit layout. Supported platforms: twitter (X), discord, instagram, sony, and custom (supply your own epoch). The encode endpoint does the reverse: build the lower-bound snowflake for a given timestamp, so you can query "all IDs created at or after this moment" — the standard trick for time-based pagination on snowflake APIs. Everything is computed locally with exact 64-bit BigInt math and no network calls. Ideal for analytics, data forensics, API pagination and debugging distributed-ID systems. A snowflake-ID toolkit — distinct from UUID/ULID generation (uuid) and date/time math (datetime). No upstream key, no cache.
api.oanor.com/snowflake-api
Discord API
Lê o Discord em tempo real — sem token de bot, sem OAuth, sem login. Resolva qualquer convite (um link discord.gg/<code> ou código simples) para obter o servidor completo: nome, descrição, URLs de imagem de ícone/banner/splash, níveis de verificação e NSFW, nível e contagem de boost (premium), URL personalizada, o canal para o qual aponta, o usuário que o criou, e contagens aproximadas de membros e online ao vivo. Obtenha o "perfil" do clã/guilda de um servidor (tag, emblema, características, recursos) e uma contagem leve de membros+online por si só. Para qualquer servidor que tenha seu widget ativado, leia o widget diretamente pelo ID da guilda: contagem de presença online, lista de membros atualmente online e os canais de voz, além do convite instantâneo ativo. Um auxiliar constrói qualquer URL de ativo CDN do Discord (ícone, banner, splash, avatar, emblema de tag de guilda) a partir de um ID e hash. Cada chamada é ao vivo (sem cache) e retorna a forma upstream do Discord, enriquecida com URLs de imagem prontas para uso. 10 endpoints — a mesma superfície pública que os wrappers populares de consulta ao Discord expõem, construídos para análises de servidor, resolução de convites, painéis comunitários e back-ends de bots. Sem chave upstream, sem cache. (Endpoints de widget retornam 403 quando um servidor tem seu widget desativado.)
api.oanor.com/discord-api
Medium API
Leggi i post di Medium in tempo reale — nessun login o chiave necessaria. Recupera le storie recenti di qualsiasi utente Medium (@handle), qualsiasi argomento/tag o qualsiasi pubblicazione, direttamente dai feed RSS pubblici di Medium. Ogni post include titolo, autore, link canonico, data di pubblicazione, categorie/tag, un estratto di testo pulito e il contenuto HTML completo. Passa user = @handle, tag = slug di un argomento o publication = slug di una pubblicazione; ogni chiamata è live (nessuna cache). 4 endpoint. Progettato per aggregazione di contenuti, monitoraggio di autori/argomenti e backend di liste di lettura. Un'API per leggere Medium. Nessuna chiave upstream, nessuna cache.
api.oanor.com/medium-api
Telegram API
Read any public Telegram channel in real time — no bot token or key needed. Fetch a channel's info (title, @username, description, subscriber/photo/video/file counts, avatar) together with its latest posts, and page back through older posts. Each post comes with its message id, text (plain + HTML), publish date, view count, author, forward source, permalink and media (photos, videos, voice, documents). Pass channel = the @username (without @); paginate older posts with before=<message id>. Data comes from Telegram's own public channel web preview — live, no cache. 3 endpoints. Built for channel monitoring, social listening and content aggregation. A public-Telegram-channel reader (no private chats; Telegram exposes no public search). No upstream key, no cache.
api.oanor.com/telegram-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Twitter / X API?
Qual è il limite di velocità di Twitter / X API?
Quanto costa Twitter / X API?
Posso cancellare l'abbonamento in qualsiasi momento?
Twitter / X API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/twitterx-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/twitterx-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/twitterx-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/twitterx-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.