Activity #2251
User #124 reacted love post #5
2/22/2025, 11:28:01 AM
Overview
reactions / #2251
User #124 reacted love post #5
2/22/2025, 11:28:01 AM
User #124 reacted love post #5
2/22/2025, 11:28:01 AM
View recordUser #124 reacted love post #5 · 2/22/2025, 11:28:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2251" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2251" ); 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/2251"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2251"
)
reaction = res.json() Response
{
"id": 2251,
"userId": 124,
"targetType": "post",
"targetId": 5,
"type": "love",
"createdAt": "2025-02-22T11:28:01.305Z"
}