example-data.com

comments / #335

Comment #335

· 3/20/2025

Virgo canis succurro abduco asper conspergo temporibus desidero.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/335"
)
comment = res.json()
{
  "id": 335,
  "userId": 178,
  "targetType": "post",
  "targetId": 87,
  "body": "Virgo canis succurro abduco asper conspergo temporibus desidero.",
  "isEdited": false,
  "createdAt": "2025-03-20T13:08:50.203Z",
  "updatedAt": "2025-03-20T13:08:50.203Z"
}
Draftbit