Activity #925
User #90 reacted wow post #232
1/2/2025, 1:07:31 AM
Overview
reactions / #925
User #90 reacted wow post #232
1/2/2025, 1:07:31 AM
User #90 reacted wow post #232
1/2/2025, 1:07:31 AM
View recordUser #90 reacted wow post #232 · 1/2/2025, 1:07:31 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/925" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/925" ); 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/925"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/925"
)
reaction = res.json() Response
{
"id": 925,
"userId": 90,
"targetType": "post",
"targetId": 232,
"type": "wow",
"createdAt": "2025-01-02T01:07:31.243Z"
}