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