Activity #2498
User #135 reacted wow post #373
6/21/2025, 6:17:36 AM
Overview
reactions / #2498
User #135 reacted wow post #373
6/21/2025, 6:17:36 AM
User #135 reacted wow post #373
6/21/2025, 6:17:36 AM
View recordUser #135 reacted wow post #373 · 6/21/2025, 6:17:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2498" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2498" ); 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/2498"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2498"
)
reaction = res.json() Response
{
"id": 2498,
"userId": 135,
"targetType": "post",
"targetId": 373,
"type": "wow",
"createdAt": "2025-06-21T06:17:36.431Z"
}