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