Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

twitter-api-v2twitter API V2 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

8,672

周安装

365

GitHub Stars

公开资料未说明

下载量

3,037
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:twitter-api-v2(twitter API V2 搜索)
来源仓库:https://github.com/odrobnik/twitter-api-v2
安装命令:
openclaw skills install twitter-api-v2
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install twitter-api-v2

简介

twitter-api-v2 用于通过 X (Twitter) API v2 访问用户与内容数据。

  • 适合在 OpenClaw 中获取个人资料、时间线、话题与搜索结果。
  • 支持书签、点赞与发帖等交互功能调用。
  • 需申请开发者密钥并遵守平台 API 使用条款。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
x
version
1.0.0
description
Access X (Twitter) via API v2: user profiles, timelines, threads, search, bookmarks, likes, and posting. Use when asked to: (1) get user info or profile, (2) fetch someone's tweets/timeline, (3) extract conversation threads, (4) search for tweets about a topic, (5) retrieve bookmarks, (6) get liked tweets, (7) post tweets, or (8) lookup tweets by ID or URL.
summary
X (Twitter) API v2 client — profiles, timelines, search, bookmarks, posting.
metadata
openclaw
emoji
🐦
requires
bins
["python3"]

X (Twitter) API

Interact with X via API v2. Pure Python stdlib — no dependencies.

Features

Public data (bearer token):

  • User profiles (bio, followers, tweets count)
  • User timelines (with filters: exclude retweets/replies)
  • Conversation threads (self-threads by same author)
  • Search recent tweets (last 7 days)
  • Single/batch tweet lookup
  • Tweet metrics (likes, retweets, replies)

User context (OAuth 2.0):

  • Bookmarks
  • Liked tweets
  • Post tweets

Setup

See SETUP.md for credentials setup (bearer token + optional OAuth 2.0).

Usage

User Info

# Get user profile (bio, followers, verification status)
python3 {baseDir}/scripts/x.py user steipete
python3 {baseDir}/scripts/x.py user elonmusk

Timeline

# Get user's recent tweets
python3 {baseDir}/scripts/x.py timeline steipete --max 50

# Exclude retweets
python3 {baseDir}/scripts/x.py timeline steipete --max 100 --exclude retweets

# Exclude both retweets and replies
python3 {baseDir}/scripts/x.py timeline steipete --max 100 --exclude retweets,replies

Threads

# Get conversation thread (self-thread by same author)
python3 {baseDir}/scripts/x.py thread https://x.com/steipete/status/123456
python3 {baseDir}/scripts/x.py thread 123456789

# Note: Only searches last 7 days (recent search). For older threads, need full-archive search.

Search

# Search recent tweets (last 7 days)
python3 {baseDir}/scripts/x.py search "OpenClaw" --max 20
python3 {baseDir}/scripts/x.py search "from:steipete OpenAI" --max 50

# Advanced search operators work (from:, to:, -filter:retweets, etc.)

Tweet Lookup

# Single tweet
python3 {baseDir}/scripts/x.py tweet 2025504475100614695
python3 {baseDir}/scripts/x.py tweet https://x.com/steipete/status/2025504475100614695

# Multiple tweets (batch)
python3 {baseDir}/scripts/x.py tweets 123456 789012 345678

Bookmarks (OAuth Required)

# One-time auth setup
python3 {baseDir}/scripts/x.py auth

# Get your bookmarks
python3 {baseDir}/scripts/x.py bookmarks --max 100

Likes (OAuth Required)

# Get user's liked tweets (requires OAuth)
python3 {baseDir}/scripts/x.py likes steipete --max 50

Posting (OAuth Required)

# Post a tweet
python3 {baseDir}/scripts/x.py post "Hello from OpenClaw! 🦞"

# Note: 280 character limit enforced by API

Output Format

All commands output clean, readable text:

👤 Peter Steinberger 🦞 (@steipete)
   ID: 25401953
   Bio: Polyagentmorous ClawFather...
   👥 382,854 followers · 2,241 following · 135,096 tweets
   https://x.com/steipete

🐦 @VictorKnox99 I think my stance on using AI here is pretty clear.
   📅 2026-02-22 09:34:33
   ❤️  5  🔁 0  💬 0
   https://x.com/steipete/status/2025504475100614695

Common Use Cases

Research user activity:

# Get someone's recent thoughts on a topic
python3 {baseDir}/scripts/x.py timeline steipete --max 100 --exclude retweets | grep -i openai

Monitor discussions:

# Search for OpenClaw mentions
python3 {baseDir}/scripts/x.py search "OpenClaw" --max 100

Extract threads:

# Get full thread for analysis
python3 {baseDir}/scripts/x.py thread <tweet_url> > thread.txt

Archive bookmarks:

# Export bookmarks to file
python3 {baseDir}/scripts/x.py bookmarks --max 100 > bookmarks.txt

Rate Limits

X API enforces rate limits per 15-minute window:

EndpointApp-Only (Bearer)User Context (OAuth)
User lookup900900
User timeline~1,500~900
Search450300
Tweet lookup900900
BookmarksN/A~180
LikesN/A~75

Headers in responses:

  • x-rate-limit-limit — max requests allowed
  • x-rate-limit-remaining — requests left in window
  • x-rate-limit-reset — Unix timestamp when limit resets

Design tips:

  • Cache results locally (deduplication helps but isn't guaranteed)
  • Add delays between requests (avoid hitting limits)
  • Use batch endpoints when possible (tweets for multiple IDs)

Billing & Costs

Pay-per-usage model:

  • Buy credits in Developer Console
  • Charged per unique tweet/user returned
  • 24-hour deduplication — same tweet fetched twice in a UTC day = charged once
  • Set spending limits to control costs
  • Monitor usage: /2/usage/tweets endpoint or console

What's billable:

  • Tweet lookups
  • Search results
  • Timeline requests
  • Bookmarks retrieval

What's NOT billable:

  • Failed requests (4xx/5xx errors)
  • Re-fetching same tweet within 24h UTC window (deduplicated)

See references/pricing.md for detailed pricing info.

Search Operators

X API search supports advanced operators:

OperatorExampleDescription
from:from:steipeteTweets from user
to:to:steipeteReplies to user
--from:steipeteExclude user
-filter:-filter:retweetsExclude retweets
filter:filter:verifiedOnly verified users
lang:lang:enLanguage filter
since:since:2026-02-01After date
until:until:2026-02-20Before date

Example:

# OpenClaw tweets from verified users, excluding retweets
python3 {baseDir}/scripts/x.py search "OpenClaw filter:verified -filter:retweets" --max 50

Limitations

Recent search only:

  • search and thread commands only cover last 7 days
  • Full-archive search requires Pro tier ($5,000/mo) or pay-per-usage

Bookmarks/likes require OAuth:

  • Bearer token alone can't access private user data
  • Need OAuth 2.0 user context (one-time setup)

No Watch Later equivalent:

  • X API doesn't expose "Watch Later" or similar lists
  • Use bookmarks as alternative

Rate limits still apply:

  • Pay-per-usage removes monthly caps but rate limits per 15-min window remain
  • Design for retries with exponential backoff

Troubleshooting

403 Forbidden:

  • Check credentials file exists and has valid bearer_token
  • Ensure endpoint doesn't require OAuth (bookmarks, likes, posting need OAuth)

429 Too Many Requests:

  • Hit rate limit — wait until x-rate-limit-reset time
  • Reduce --max values
  • Add delays between requests

No results found:

  • Recent search only covers 7 days — thread/search may miss older content
  • User may have no tweets or privacy settings blocking access

Authentication errors (OAuth):

  • Ensure oauth2.json has correct client_id/client_secret
  • Re-run x.py auth to refresh tokens
  • Check scopes in Developer Portal match required scopes

Notes

  • Pure stdlib — no pip dependencies, uses urllib + json
  • Works offline — caches nothing, always fetches fresh data
  • Thread-safe — stateless CLI, safe for parallel invocations
  • Deduplication — X API deduplicates within 24h UTC day (soft guarantee)
  • Output encoding — UTF-8, handles emoji and international characters

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.87%
按下载量换算2,304

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills