Activity #2091
User #92 reacted angry post #495
6/26/2024, 6:03:39 AM
Overview
reactions / #2091
User #92 reacted angry post #495
6/26/2024, 6:03:39 AM
User #92 reacted angry post #495
6/26/2024, 6:03:39 AM
View recordUser #92 reacted angry post #495 · 6/26/2024, 6:03:39 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2091" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2091" ); 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/2091"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2091"
)
reaction = res.json() Response
{
"id": 2091,
"userId": 92,
"targetType": "post",
"targetId": 495,
"type": "angry",
"createdAt": "2024-06-26T06:03:39.490Z"
}