Activity #1941
User #213 reacted love post #168
3/7/2025, 2:19:38 PM
Overview
reactions / #1941
User #213 reacted love post #168
3/7/2025, 2:19:38 PM
User #213 reacted love post #168
3/7/2025, 2:19:38 PM
View recordUser #213 reacted love post #168 · 3/7/2025, 2:19:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1941" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1941" ); 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/1941"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1941"
)
reaction = res.json() Response
{
"id": 1941,
"userId": 213,
"targetType": "post",
"targetId": 168,
"type": "love",
"createdAt": "2025-03-07T14:19:38.186Z"
}