Skip to main content
Endpoint: POST /article Description Twitter/X now allows for long-form “Articles” (formerly known as Notes or long-form posts). This endpoint extracts the full text content, formatting, and metadata of these articles, which are often truncated in standard tweet endpoints. Who is it for?
  • Newsletter Creators: To aggregate high-quality, long-form thoughts from industry leaders into a digest.
  • Content Analysts: To perform deep-dive text analysis on detailed essays and manifestos posted on X.
  • Knowledge Management Tools: To save and index long-form educational content (e.g., “How-to” guides or research summaries).
Use Cases
  • Extracting the full text of a project’s “Vision Article” or a founder’s deep dive for internal archiving.
  • Building a “Read Later” service that supports full-length Twitter articles.
  • Performing keyword extraction and summarization on long-form content that exceeds the 280-character limit.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/article"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "tweet_link": "https://x.com/i/article/123456789"
}

response = requests.post(url, json=payload, headers=headers)
article = response.json()

print(f"Title/Preview: {article['preview_text']}")
print(f"Full Content: {article['full_text']}")
print(f"Published at: {article['published_at']}")