Activity #2652
User #141 reacted wow post #103
7/29/2024, 11:54:21 AM
Overview
reactions / #2652
User #141 reacted wow post #103
7/29/2024, 11:54:21 AM
User #141 reacted wow post #103
7/29/2024, 11:54:21 AM
View recordUser #141 reacted wow post #103 · 7/29/2024, 11:54:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2652" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2652" ); 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/2652"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2652"
)
reaction = res.json() Response
{
"id": 2652,
"userId": 141,
"targetType": "post",
"targetId": 103,
"type": "wow",
"createdAt": "2024-07-29T11:54:21.542Z"
}