conversations / #148
- title
- Project Phoenix 86
- isGroup
- true
- createdAt
- updatedAt
Component variants
Medium
Project Phoenix 86
#148
Small
conversations/148 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/148"
);
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/148"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/148"
)
conversation = res.json() {
"id": 148,
"title": "Project Phoenix 86",
"isGroup": true,
"createdAt": "2026-03-08T20:33:19.369Z",
"updatedAt": "2026-04-27T06:33:35.274Z"
}