Activity #1987
User #172 reacted like post #267
5/10/2025, 8:55:10 PM
Overview
reactions / #1987
User #172 reacted like post #267
5/10/2025, 8:55:10 PM
User #172 reacted like post #267
5/10/2025, 8:55:10 PM
View recordUser #172 reacted like post #267 · 5/10/2025, 8:55:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1987" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1987" ); 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/1987"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1987"
)
reaction = res.json() Response
{
"id": 1987,
"userId": 172,
"targetType": "post",
"targetId": 267,
"type": "like",
"createdAt": "2025-05-10T20:55:10.423Z"
}