Activity #249
User #49 reacted laugh post #364
4/19/2025, 4:57:32 PM
Overview
reactions / #249
User #49 reacted laugh post #364
4/19/2025, 4:57:32 PM
User #49 reacted laugh post #364
4/19/2025, 4:57:32 PM
View recordUser #49 reacted laugh post #364 · 4/19/2025, 4:57:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/249" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/249" ); 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/249"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/249"
)
reaction = res.json() Response
{
"id": 249,
"userId": 49,
"targetType": "post",
"targetId": 364,
"type": "laugh",
"createdAt": "2025-04-19T16:57:32.821Z"
}