Activity #1996
User #47 reacted like post #230
10/28/2024, 2:56:26 PM
Overview
reactions / #1996
User #47 reacted like post #230
10/28/2024, 2:56:26 PM
User #47 reacted like post #230
10/28/2024, 2:56:26 PM
View recordUser #47 reacted like post #230 · 10/28/2024, 2:56:26 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1996" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1996" ); 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/1996"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1996"
)
reaction = res.json() Response
{
"id": 1996,
"userId": 47,
"targetType": "post",
"targetId": 230,
"type": "like",
"createdAt": "2024-10-28T14:56:26.125Z"
}