Activity #171
User #193 reacted laugh post #78
6/23/2025, 10:55:50 PM
Overview
reactions / #171
User #193 reacted laugh post #78
6/23/2025, 10:55:50 PM
User #193 reacted laugh post #78
6/23/2025, 10:55:50 PM
View recordUser #193 reacted laugh post #78 · 6/23/2025, 10:55:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/171" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/171" ); 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/171"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/171"
)
reaction = res.json() Response
{
"id": 171,
"userId": 193,
"targetType": "post",
"targetId": 78,
"type": "laugh",
"createdAt": "2025-06-23T22:55:50.743Z"
}