Comment #1298
· 1/7/2025
Adstringo sollers cariosus tactus desidero optio sopor unde decerno.
Overview
comments / #1298
Adstringo sollers cariosus tactus desidero optio sopor unde decerno.
Comment #1298
1/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1298" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1298" ); 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/1298"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1298"
)
comment = res.json() Response
{
"id": 1298,
"userId": 160,
"targetType": "post",
"targetId": 37,
"body": "Adstringo sollers cariosus tactus desidero optio sopor unde decerno.",
"isEdited": true,
"createdAt": "2025-01-07T17:37:27.502Z",
"updatedAt": "2026-01-22T04:07:05.198Z"
}