Activity #605
User #107 reacted love post #464
4/19/2025, 12:04:51 AM
Overview
reactions / #605
User #107 reacted love post #464
4/19/2025, 12:04:51 AM
User #107 reacted love post #464
4/19/2025, 12:04:51 AM
View recordUser #107 reacted love post #464 · 4/19/2025, 12:04:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/605" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/605" ); 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/605"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/605"
)
reaction = res.json() Response
{
"id": 605,
"userId": 107,
"targetType": "post",
"targetId": 464,
"type": "love",
"createdAt": "2025-04-19T00:04:51.799Z"
}