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