Activity #983
User #122 reacted like post #22
4/26/2026, 12:55:52 PM
Overview
reactions / #983
User #122 reacted like post #22
4/26/2026, 12:55:52 PM
User #122 reacted like post #22
4/26/2026, 12:55:52 PM
View recordUser #122 reacted like post #22 · 4/26/2026, 12:55:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/983" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/983" ); 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/983"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/983"
)
reaction = res.json() Response
{
"id": 983,
"userId": 122,
"targetType": "post",
"targetId": 22,
"type": "like",
"createdAt": "2026-04-26T12:55:52.730Z"
}