← Back to Dashboard

Twitter

SocialActiveCORS ReadyUnknownAuth: OAuthDoc: HTML
Visit Website ↗

Description

Read and write Twitter data

✨ AI Summary

API to read and write Twitter data, including tweets, user information, and performing actions like posting.

Code Example

import requests

url = "https://api.twitter.com/2/tweets"
headers = {
    "Authorization": "Bearer YOUR_BEARER_TOKEN",
    "Content-Type": "application/json"
}

payload = {"text": "Hello from the Twitter API!"}

response = requests.post(url, headers=headers, json=payload)
response.raise_for_status() # Raise an exception for HTTP errors
print(response.json())

Live Health Metrics

Last 50 checks (10 min intervals)