Activity #2535
User #213 reacted sad post #391
10/27/2025, 7:53:48 AM
Overview
reactions / #2535
User #213 reacted sad post #391
10/27/2025, 7:53:48 AM
User #213 reacted sad post #391
10/27/2025, 7:53:48 AM
View recordUser #213 reacted sad post #391 · 10/27/2025, 7:53:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2535" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2535" ); 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/2535"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2535"
)
reaction = res.json() Response
{
"id": 2535,
"userId": 213,
"targetType": "post",
"targetId": 391,
"type": "sad",
"createdAt": "2025-10-27T07:53:48.596Z"
}