Activity #2722
User #88 reacted love post #74
9/12/2024, 8:48:17 PM
Overview
reactions / #2722
User #88 reacted love post #74
9/12/2024, 8:48:17 PM
User #88 reacted love post #74
9/12/2024, 8:48:17 PM
View recordUser #88 reacted love post #74 · 9/12/2024, 8:48:17 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2722" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2722" ); 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/2722"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2722"
)
reaction = res.json() Response
{
"id": 2722,
"userId": 88,
"targetType": "post",
"targetId": 74,
"type": "love",
"createdAt": "2024-09-12T20:48:17.957Z"
}