Comment #1018
· 11/26/2024
Voluptatibus animi synagoga amplus cito centum somniculosus defessus curo teneo. Ipsa similique demergo sortitus adaugeo.
Overview
comments / #1018
Voluptatibus animi synagoga amplus cito centum somniculosus defessus curo teneo. Ipsa similique demergo sortitus adaugeo.
Comment #1018
11/26/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1018" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1018" ); 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/1018"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1018"
)
comment = res.json() Response
{
"id": 1018,
"userId": 122,
"targetType": "post",
"targetId": 463,
"body": "Voluptatibus animi synagoga amplus cito centum somniculosus defessus curo teneo. Ipsa similique demergo sortitus adaugeo.",
"isEdited": false,
"createdAt": "2024-11-26T01:04:52.076Z",
"updatedAt": "2024-11-26T01:04:52.076Z"
}