Comment #397
· 1/1/2025
Deinde quasi confido ascisco adimpleo conspergo amiculum adsum timidus vulgaris. Tyrannus complectus antiquus deporto eligendi aveho iusto.
Overview
comments / #397
Deinde quasi confido ascisco adimpleo conspergo amiculum adsum timidus vulgaris. Tyrannus complectus antiquus deporto eligendi aveho iusto.
Comment #397
1/1/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/397" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/397" ); 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/397"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/397"
)
comment = res.json() Response
{
"id": 397,
"userId": 109,
"targetType": "post",
"targetId": 117,
"body": "Deinde quasi confido ascisco adimpleo conspergo amiculum adsum timidus vulgaris. Tyrannus complectus antiquus deporto eligendi aveho iusto.",
"isEdited": true,
"createdAt": "2025-01-01T00:46:08.307Z",
"updatedAt": "2025-09-25T06:13:46.427Z"
}