Activity #2564
User #250 reacted wow post #339
3/2/2025, 9:41:30 PM
Overview
reactions / #2564
User #250 reacted wow post #339
3/2/2025, 9:41:30 PM
User #250 reacted wow post #339
3/2/2025, 9:41:30 PM
View recordUser #250 reacted wow post #339 · 3/2/2025, 9:41:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2564" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2564" ); 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/2564"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2564"
)
reaction = res.json() Response
{
"id": 2564,
"userId": 250,
"targetType": "post",
"targetId": 339,
"type": "wow",
"createdAt": "2025-03-02T21:41:30.966Z"
}