{{ APP_NAME }}

v{{ APP_VERSION }} - X(Twitter)リプライ取得
{{ stats.tweets }}
親ツイート
{{ stats.replies }}
リプライ
{{ stats.users }}
ユーザー(クリックで一覧 →)
{% include '_nav.html' %}

リプライを取得

{% set _ps = plan_status %} {# 追加クレジットも合算して % を計算 (使い切り感を軽減) #} {% set _bonus = _ps.bonus_remaining or 0 %} {% set _ai_bonus = _ps.ai_bonus_remaining or 0 %} {% set _quota_total = _ps.monthly_quota + _bonus %} {% set _ai_quota_total = _ps.ai_monthly_quota + _ai_bonus %} {% set _quota_pct = (100 * _ps.used_this_month / _quota_total ) | round(1) if _quota_total else 0 %} {% set _ai_pct = (100 * _ps.ai_used_this_month / _ai_quota_total) | round(1) if _ai_quota_total else 0 %}
現在のプラン: {{ _ps.plan_label }} (月額 ¥{{ '{:,}'.format(_ps.price_jpy) }})
⚙ プラン変更 →
💬 リプライ: {{ '{:,}'.format(_ps.used_this_month) }} / {{ '{:,}'.format(_ps.monthly_quota) }}{% if _bonus > 0 %} + 追加 {{ '{:,}'.format(_bonus) }}{% endif %} ({{ _quota_pct }}%)
🤖 AI判定: {{ '{:,}'.format(_ps.ai_used_this_month) }} / {{ '{:,}'.format(_ps.ai_monthly_quota) }}{% if _ai_bonus > 0 %} + 追加 {{ '{:,}'.format(_ai_bonus) }}{% endif %} ({{ _ai_pct }}%)
{% if not license_status.valid %}
🔐 ライセンス未認証です。⚙ 設定からライセンスキーを登録してください。
まだお持ちでない方は 公式サイトでプラン購入
{% endif %} {% if not _ps.api_key_set %}
⚠ サーバーAPIキー未設定です。⚙ 設定から TwitterAPI.io キーを登録してください。
{% endif %}

👤 ユーザー全体から取得(期間指定可)

指定ユーザーの全ツイート(または期間内)に対して、それぞれリプライを一括取得します。 対象ツイートが多い場合に備えて期間と上限を指定してください。

🎯 特定ユーザー間のやりとり抽出

誰が誰に向けて送った投稿だけを抽出します。
高度検索 (Advanced Search) を使うので、宛先側のツイートを全部取得せず直接ターゲット投稿だけを効率取得できます。