example-data.com
Menu
Browse docs and collections

Overview

reactions / #2889

Activity #2889

User #18 reacted love post #65

2/17/2025, 9:14:25 PM

Component variants

Medium
Small

User #18 reacted love post #65 · 2/17/2025, 9:14:25 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 2889,
  "userId": 18,
  "targetType": "post",
  "targetId": 65,
  "type": "love",
  "createdAt": "2025-02-17T21:14:25.081Z"
}