Activity #1277
User #35 reacted wow post #63
8/19/2025, 10:57:46 AM
Overview
reactions / #1277
User #35 reacted wow post #63
8/19/2025, 10:57:46 AM
User #35 reacted wow post #63
8/19/2025, 10:57:46 AM
View recordUser #35 reacted wow post #63 · 8/19/2025, 10:57:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1277" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1277" ); 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/1277"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1277"
)
reaction = res.json() Response
{
"id": 1277,
"userId": 35,
"targetType": "post",
"targetId": 63,
"type": "wow",
"createdAt": "2025-08-19T10:57:46.814Z"
}