Activity #193
User #201 reacted laugh post #85
11/9/2024, 1:26:21 AM
Overview
reactions / #193
User #201 reacted laugh post #85
11/9/2024, 1:26:21 AM
User #201 reacted laugh post #85
11/9/2024, 1:26:21 AM
View recordUser #201 reacted laugh post #85 · 11/9/2024, 1:26:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/193" ); 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/193"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/193"
)
reaction = res.json() Response
{
"id": 193,
"userId": 201,
"targetType": "post",
"targetId": 85,
"type": "laugh",
"createdAt": "2024-11-09T01:26:21.544Z"
}