Comment #1370
· 6/22/2024
Animi comburo conspergo aeternus capio cervus tersus speciosus copiose. Coerceo odio incidunt. Caelestis censura caelestis absque abscido supellex sed.
Overview
comments / #1370
Animi comburo conspergo aeternus capio cervus tersus speciosus copiose. Coerceo odio incidunt. Caelestis censura caelestis absque abscido supellex sed.
Comment #1370
6/22/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1370" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1370" ); 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/1370"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1370"
)
comment = res.json() Response
{
"id": 1370,
"userId": 67,
"targetType": "post",
"targetId": 453,
"body": "Animi comburo conspergo aeternus capio cervus tersus speciosus copiose. Coerceo odio incidunt. Caelestis censura caelestis absque abscido supellex sed.",
"isEdited": false,
"createdAt": "2024-06-22T08:44:07.162Z",
"updatedAt": "2024-06-22T08:44:07.162Z"
}