
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
tweetapi-sdk
Advanced tools
TypeScript client for the tweetapi.dev API: read-only X (Twitter) profiles, tweets, threads, search.
Typed TypeScript client for tweetapi.dev, the read-only X (Twitter) data API. Generated from the API's OpenAPI document, so every endpoint, parameter and response type is here.
npm install tweetapi-sdk
import { tweetapi } from 'tweetapi-sdk';
const api = tweetapi({ apiKey: process.env.TWEETAPI_KEY! });
const { data: profile } = await api.getUser({ path: { handle: 'x' } });
console.log(profile?.data?.followers, profile?.credits_charged);
const { data: page } = await api.searchTweets({ query: { q: 'from:x since:2026-09-01', count: 20 } });
for (const t of page?.data ?? []) console.log(t.id, t.text);
const { data: many } = await api.getUsers({ body: { handles: ['x', 'github', 'vercel'] } });
console.log(many?.items, many?.errors);
Every call returns { data, error, response }. On a non-2xx status data is undefined and error holds the
API error with its code (no_credits, not_found, rate_limited, ...). Works in Node 18+, Bun, Deno,
browsers and edge runtimes; it uses fetch.
Methods: getMe, listPacks, createCheckout, getUser, getUsers, getUserTweets, getFollowers,
getFollowing, searchTweets, getTweet, getTweets, getThread, getReplies, getQuotes,
getRetweeters. Pagination: pass next_cursor from a page back as query.cursor.
Docs: https://tweetapi.dev/docs. API reference: https://tweetapi.dev/reference.
FAQs
TypeScript client for the tweetapi.dev API: read-only X (Twitter) profiles, tweets, threads, search.
The npm package tweetapi-sdk receives a total of 466 weekly downloads. As such, tweetapi-sdk popularity was classified as not popular.
We found that tweetapi-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.