← Back to Home

Replay Request

/replay/:id
Retrieve previously shared data using the share ID. Returns the original JSON data plus a shared_at timestamp.
Try it now

Parameters

id path
Share ID from /share endpoint

Examples

curl
curl https://tcpdata.com/replay/abc12345

# Returns:
# {
#   "api": "GitHub",
#   "user": "octocat",
#   "repos": 42,
#   "shared_at": "2025-10-04T07:29:36.257Z"
# }
JavaScript (fetch)
const data = await fetch('https://tcpdata.com/replay/abc12345')
  .then(res => res.json());
console.log(data);
Python (requests)
import requests

data = requests.get('https://tcpdata.com/replay/abc12345').json()
print(data)