Skip to main content
Reply to a post on X using your connected account.

Overview

The Reply endpoint allows you to post a reply to a specific post. Replies appear as threaded responses under the original post.

Authentication

Requires a valid API key with a connected X account.
curl -X POST https://api.trigify.io/v1/x/reply \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tweet_id": "1234567890123456789",
    "text": "Great insight! Thanks for sharing."
  }'

Input

FieldTypeDescription
tweet_idstringRequired. A numeric post ID or full post URL to reply to
textstringRequired. The reply text (max 280 characters)

Credit Usage

This endpoint charges 1 credit per reply.