Comment #622
· 9/20/2025
Adsidue ambitus vomer amet vallum benigne bene avarus viduo sollers. Tredecim vestrum texo vestigium veniam ustilo terebro bene adstringo depulso. Tero sursum uterque victus debitis sapiente.
Overview
comments / #622
Adsidue ambitus vomer amet vallum benigne bene avarus viduo sollers. Tredecim vestrum texo vestigium veniam ustilo terebro bene adstringo depulso. Tero sursum uterque victus debitis sapiente.
Comment #622
9/20/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/622" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/622" ); const comment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";
const res = await fetch(
"https://example-data.com/api/v1/comments/622"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/622"
)
comment = res.json() Response
{
"id": 622,
"userId": 180,
"targetType": "post",
"targetId": 195,
"body": "Adsidue ambitus vomer amet vallum benigne bene avarus viduo sollers. Tredecim vestrum texo vestigium veniam ustilo terebro bene adstringo depulso. Tero sursum uterque victus debitis sapiente.",
"isEdited": false,
"createdAt": "2025-09-20T19:35:03.575Z",
"updatedAt": "2025-09-20T19:35:03.575Z"
}