example-data.com

comments / #1053

Comment #1053

· 1/5/2025

Curia bos vicissitudo.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/comments/1053" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/comments/1053"
);
const comment = await res.json();
import type { Comment } from "https://example-data.com/types/comments.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/comments/1053"
);
const comment = (await res.json()) as Comment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/1053"
)
comment = res.json()
{
  "id": 1053,
  "userId": 159,
  "targetType": "post",
  "targetId": 324,
  "body": "Curia bos vicissitudo.",
  "isEdited": false,
  "createdAt": "2025-01-05T21:08:35.298Z",
  "updatedAt": "2025-01-05T21:08:35.298Z"
}
Draftbit