example-data.com

comments / #151

Comment #151

· 5/23/2025

Nemo aegrotatio verbera amor ubi ars reiciendis.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/comments/151" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/comments/151"
);
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/151"
);
const comment = (await res.json()) as Comment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/151"
)
comment = res.json()
{
  "id": 151,
  "userId": 234,
  "targetType": "post",
  "targetId": 267,
  "body": "Nemo aegrotatio verbera amor ubi ars reiciendis.",
  "isEdited": false,
  "createdAt": "2025-05-23T20:48:39.030Z",
  "updatedAt": "2025-05-23T20:48:39.030Z"
}
Draftbit