Single Tweet Retrieval

POST

/single-tweet-retrieval

Single Tweet Retrieval

Endpoint to retrieve a single tweet based on its link.

Request Body

linkstring

The link to the tweet that needs to be retrieved.

Example: "https://twitter.com/ThePeterMick/status/1724727436342919241"
Status codeDescription
200Successfully retrieved the tweet
400Bad Request
500Internal Server Error
curl
curl -X POST "https://tinyapis.io/single-tweet-retrieval" \
  -d '{
  "link": "https://twitter.com/ThePeterMick/status/1724727436342919241"
}'
Response
[
	{
		"username": "string",
		"text": "string",
		"img": "string",
		"type": "string",
		"profile_img": "string"
	}
]