Activity #518
User #189 reacted wow post #329
10/28/2024, 2:05:57 AM
Overview
reactions / #518
User #189 reacted wow post #329
10/28/2024, 2:05:57 AM
User #189 reacted wow post #329
10/28/2024, 2:05:57 AM
View recordUser #189 reacted wow post #329 · 10/28/2024, 2:05:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/518" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/518" ); 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/518"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/518"
)
reaction = res.json() Response
{
"id": 518,
"userId": 189,
"targetType": "post",
"targetId": 329,
"type": "wow",
"createdAt": "2024-10-28T02:05:57.829Z"
}