conversations / #28
- title
- Movie Night 25
- isGroup
- true
- createdAt
- updatedAt
Component variants
Medium
Movie Night 25
#28
Small
conversations/28 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/28"
);
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/28"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/28"
)
conversation = res.json() {
"id": 28,
"title": "Movie Night 25",
"isGroup": true,
"createdAt": "2025-07-25T01:32:20.451Z",
"updatedAt": "2025-10-09T12:06:33.997Z"
}