Activity #942
User #47 reacted angry post #386
12/28/2024, 6:43:24 AM
Overview
reactions / #942
User #47 reacted angry post #386
12/28/2024, 6:43:24 AM
User #47 reacted angry post #386
12/28/2024, 6:43:24 AM
View recordUser #47 reacted angry post #386 · 12/28/2024, 6:43:24 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/942" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/942" ); 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/942"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/942"
)
reaction = res.json() Response
{
"id": 942,
"userId": 47,
"targetType": "post",
"targetId": 386,
"type": "angry",
"createdAt": "2024-12-28T06:43:24.937Z"
}