Comment #1035
· 3/12/2025
Tristis carpo charisma earum arceo vindico. Commodo currus aestas. Una copia crastinus tyrannus. Antiquus velociter incidunt totam adstringo summopere deleo quisquam.
Overview
comments / #1035
Tristis carpo charisma earum arceo vindico. Commodo currus aestas. Una copia crastinus tyrannus. Antiquus velociter incidunt totam adstringo summopere deleo quisquam.
Comment #1035
3/12/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1035" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1035" ); 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/1035"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1035"
)
comment = res.json() Response
{
"id": 1035,
"userId": 177,
"targetType": "post",
"targetId": 236,
"body": "Tristis carpo charisma earum arceo vindico. Commodo currus aestas. Una copia crastinus tyrannus. Antiquus velociter incidunt totam adstringo summopere deleo quisquam.",
"isEdited": true,
"createdAt": "2025-03-12T16:28:59.920Z",
"updatedAt": "2025-09-13T11:30:45.592Z"
}