Comment #1401
· 8/6/2024
Collum rem desparatus adfero vulgo contigo.
Overview
comments / #1401
Collum rem desparatus adfero vulgo contigo.
Comment #1401
8/6/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1401" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1401" ); 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/1401"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1401"
)
comment = res.json() Response
{
"id": 1401,
"userId": 193,
"targetType": "post",
"targetId": 151,
"body": "Collum rem desparatus adfero vulgo contigo.",
"isEdited": false,
"createdAt": "2024-08-06T21:47:57.644Z",
"updatedAt": "2024-08-06T21:47:57.644Z"
}