example-data.com
Menu
Browse docs and collections

Overview

reactions / #65

Activity #65

User #101 reacted sad post #269

5/27/2025, 3:54:33 PM

Component variants

Medium
Small

User #101 reacted sad post #269 · 5/27/2025, 3:54:33 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 65,
  "userId": 101,
  "targetType": "post",
  "targetId": 269,
  "type": "sad",
  "createdAt": "2025-05-27T15:54:33.970Z"
}