conversations / #87
- title
- Study Group 69
- isGroup
- true
- createdAt
- updatedAt
Component variants
Medium
Study Group 69
#87
Small
conversations/87 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/87" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/87"
);
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/87"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/87"
)
conversation = res.json() {
"id": 87,
"title": "Study Group 69",
"isGroup": true,
"createdAt": "2025-10-21T23:59:32.339Z",
"updatedAt": "2026-04-26T15:57:56.437Z"
}