Activity #2124
User #66 reacted wow post #184
10/18/2024, 8:43:09 AM
Overview
reactions / #2124
User #66 reacted wow post #184
10/18/2024, 8:43:09 AM
User #66 reacted wow post #184
10/18/2024, 8:43:09 AM
View recordUser #66 reacted wow post #184 · 10/18/2024, 8:43:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2124" ); 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/2124"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2124"
)
reaction = res.json() Response
{
"id": 2124,
"userId": 66,
"targetType": "post",
"targetId": 184,
"type": "wow",
"createdAt": "2024-10-18T08:43:09.731Z"
}