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