Activity #1624
User #213 reacted laugh post #117
2/19/2025, 2:38:56 AM
Overview
reactions / #1624
User #213 reacted laugh post #117
2/19/2025, 2:38:56 AM
User #213 reacted laugh post #117
2/19/2025, 2:38:56 AM
View recordUser #213 reacted laugh post #117 · 2/19/2025, 2:38:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1624" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1624" ); 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/1624"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1624"
)
reaction = res.json() Response
{
"id": 1624,
"userId": 213,
"targetType": "post",
"targetId": 117,
"type": "laugh",
"createdAt": "2025-02-19T02:38:56.039Z"
}