Comment #618
· 4/19/2025
Aperiam aestivus synagoga valetudo alioqui. Dolorem tibi subito depereo solutio quidem carmen allatus timor.
Overview
comments / #618
Aperiam aestivus synagoga valetudo alioqui. Dolorem tibi subito depereo solutio quidem carmen allatus timor.
Comment #618
4/19/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/618" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/618" ); 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/618"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/618"
)
comment = res.json() Response
{
"id": 618,
"userId": 98,
"targetType": "post",
"targetId": 61,
"body": "Aperiam aestivus synagoga valetudo alioqui. Dolorem tibi subito depereo solutio quidem carmen allatus timor.",
"isEdited": false,
"createdAt": "2025-04-19T13:03:01.141Z",
"updatedAt": "2025-04-19T13:03:01.141Z"
}