Activity #526
User #114 reacted wow post #130
11/19/2024, 7:15:41 AM
Overview
reactions / #526
User #114 reacted wow post #130
11/19/2024, 7:15:41 AM
User #114 reacted wow post #130
11/19/2024, 7:15:41 AM
View recordUser #114 reacted wow post #130 · 11/19/2024, 7:15:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/526" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/526" ); 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/526"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/526"
)
reaction = res.json() Response
{
"id": 526,
"userId": 114,
"targetType": "post",
"targetId": 130,
"type": "wow",
"createdAt": "2024-11-19T07:15:41.187Z"
}