Activity #1051
User #126 reacted laugh post #101
6/20/2025, 9:08:52 AM
Overview
reactions / #1051
User #126 reacted laugh post #101
6/20/2025, 9:08:52 AM
User #126 reacted laugh post #101
6/20/2025, 9:08:52 AM
View recordUser #126 reacted laugh post #101 · 6/20/2025, 9:08:52 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1051" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1051" ); const reaction = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/reactions.d.ts https://example-data.com/types/reactions.d.ts
import type { Reaction } from "./types/reactions";
const res = await fetch(
"https://example-data.com/api/v1/reactions/1051"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1051"
)
reaction = res.json() Response
{
"id": 1051,
"userId": 126,
"targetType": "post",
"targetId": 101,
"type": "laugh",
"createdAt": "2025-06-20T09:08:52.430Z"
}