Comment #1393
· 10/8/2024
Possimus altus tenetur repudiandae acceptus solutio.
Overview
comments / #1393
Possimus altus tenetur repudiandae acceptus solutio.
Comment #1393
10/8/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1393" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1393" ); 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/1393"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1393"
)
comment = res.json() Response
{
"id": 1393,
"userId": 217,
"targetType": "post",
"targetId": 478,
"body": "Possimus altus tenetur repudiandae acceptus solutio.",
"isEdited": false,
"createdAt": "2024-10-08T06:48:07.006Z",
"updatedAt": "2024-10-08T06:48:07.006Z"
}