Activity #2473
User #243 reacted angry post #146
12/8/2024, 4:35:59 AM
Overview
reactions / #2473
User #243 reacted angry post #146
12/8/2024, 4:35:59 AM
User #243 reacted angry post #146
12/8/2024, 4:35:59 AM
View recordUser #243 reacted angry post #146 · 12/8/2024, 4:35:59 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2473" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2473" ); 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/2473"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2473"
)
reaction = res.json() Response
{
"id": 2473,
"userId": 243,
"targetType": "post",
"targetId": 146,
"type": "angry",
"createdAt": "2024-12-08T04:35:59.492Z"
}