Activity #1293
User #105 reacted love post #157
8/27/2024, 11:39:25 AM
Overview
reactions / #1293
User #105 reacted love post #157
8/27/2024, 11:39:25 AM
User #105 reacted love post #157
8/27/2024, 11:39:25 AM
View recordUser #105 reacted love post #157 · 8/27/2024, 11:39:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1293" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1293" ); 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/1293"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1293"
)
reaction = res.json() Response
{
"id": 1293,
"userId": 105,
"targetType": "post",
"targetId": 157,
"type": "love",
"createdAt": "2024-08-27T11:39:25.289Z"
}