Create Post Quote
POST
/tw-v2/interaction/create-post-quoteDescription
Quote tweet another tweet with your own commentary. Supports text content up to 280 characters for non-premium users, or 25,000 characters for premium users.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
| authToken | string | required | Twitter authentication token (auth_token cookie value) |
| text | string | required | The text content of the quote tweet (max 280 characters for non-premium, 25,000 for premium) |
| attachmentUrl | string | required | The ID of the tweet to quote |
| proxy | string | required | Proxy in format 'hostname:port@username:password' (required for better success rates) |
| disableLinkPreview | boolean | optional | When true, disables link preview cards for tweets containing URLs (defaults to false) |
Code Examples
const body = {
authToken: 'YOUR_AUTH_TOKEN',
text: 'Hello, world!',
attachmentUrl: 'https://x.com/username/status/1234567890'
};
const response = await fetch('https://api.tweetapi.com/tw-v2/interaction/create-post-quote', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify(body)
});
const data = await response.json();
console.log(data);
Response
Success Response (200 OK)
200
{
"data": {
"id": "1973679557254562273",
"action": "quote",
"timestamp": "2025-10-02T09:20:50.518Z",
"success": true,
"metadata": {
"tweet_id": "1973679557254562273",
"author_username": "username",
"text": "Testing quote tweet - 1759396849",
"created_at": "Thu Oct 02 09:20:50 +0000 2025",
"url": "https://twitter.com/username/status/1973679557254562273",
"quoted_tweet_id": "1973111601470513650",
"quoted_tweet_url": "https://twitter.com/lexfridman/status/1973111601470513650"
}
}
}API Playground
POST
/tw-v2/interaction/create-post-quoteSensitive Credentials Required
Requires your Twitter authToken. Use a test account.
Press ⌘ + Enter to execute
curl -X POST "https://api.tweetapi.com/tw-v2/interaction/create-post-quote" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"Response
Click "Try It!" to see the response