conversations / #43
- title
- Study Group 67
- isGroup
- true
- createdAt
- updatedAt
Component variants
Medium
Study Group 67
#43
Small
conversations/43 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/43"
);
const conversation = await res.json();import type { Conversation } from "https://example-data.com/types/conversations.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/conversations/43"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/43"
)
conversation = res.json() {
"id": 43,
"title": "Study Group 67",
"isGroup": true,
"createdAt": "2025-09-27T10:42:29.847Z",
"updatedAt": "2025-11-13T08:25:59.688Z"
}