Activity #2476
User #5 reacted wow post #177
8/16/2024, 6:50:26 AM
Overview
reactions / #2476
User #5 reacted wow post #177
8/16/2024, 6:50:26 AM
User #5 reacted wow post #177
8/16/2024, 6:50:26 AM
View recordUser #5 reacted wow post #177 · 8/16/2024, 6:50:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2476" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2476" ); 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/2476"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2476"
)
reaction = res.json() Response
{
"id": 2476,
"userId": 5,
"targetType": "post",
"targetId": 177,
"type": "wow",
"createdAt": "2024-08-16T06:50:26.444Z"
}