Activity #1803
User #49 reacted wow post #285
10/20/2024, 3:44:36 AM
Overview
reactions / #1803
User #49 reacted wow post #285
10/20/2024, 3:44:36 AM
User #49 reacted wow post #285
10/20/2024, 3:44:36 AM
View recordUser #49 reacted wow post #285 · 10/20/2024, 3:44:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1803" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1803" ); 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/1803"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1803"
)
reaction = res.json() Response
{
"id": 1803,
"userId": 49,
"targetType": "post",
"targetId": 285,
"type": "wow",
"createdAt": "2024-10-20T03:44:36.754Z"
}