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