Activity #915
User #79 reacted wow post #387
1/5/2025, 3:09:43 AM
Overview
reactions / #915
User #79 reacted wow post #387
1/5/2025, 3:09:43 AM
User #79 reacted wow post #387
1/5/2025, 3:09:43 AM
View recordUser #79 reacted wow post #387 · 1/5/2025, 3:09:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/915" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/915" ); 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/915"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/915"
)
reaction = res.json() Response
{
"id": 915,
"userId": 79,
"targetType": "post",
"targetId": 387,
"type": "wow",
"createdAt": "2025-01-05T03:09:43.680Z"
}