example-data.com
Menu
Browse docs and collections

Overview

reactions / #698

Activity #698

User #218 reacted laugh post #441

2/4/2026, 12:56:19 PM

Component variants

Medium
Small

User #218 reacted laugh post #441 · 2/4/2026, 12:56:19 PM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/reactions/698" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/reactions/698"
);
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/698"
);
const reaction = (await res.json()) as Reaction;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/reactions/698"
)
reaction = res.json()

Response

{
  "id": 698,
  "userId": 218,
  "targetType": "post",
  "targetId": 441,
  "type": "laugh",
  "createdAt": "2026-02-04T12:56:19.765Z"
}