Activity #1709
User #157 reacted laugh post #170
8/21/2025, 3:57:55 AM
Overview
reactions / #1709
User #157 reacted laugh post #170
8/21/2025, 3:57:55 AM
User #157 reacted laugh post #170
8/21/2025, 3:57:55 AM
View recordUser #157 reacted laugh post #170 · 8/21/2025, 3:57:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1709" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1709" ); 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/1709"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1709"
)
reaction = res.json() Response
{
"id": 1709,
"userId": 157,
"targetType": "post",
"targetId": 170,
"type": "laugh",
"createdAt": "2025-08-21T03:57:55.023Z"
}