conversations / #81
- title
- Travel Planning 52
- isGroup
- true
- createdAt
- updatedAt
Component variants
Medium
Travel Planning 52
#81
Small
conversations/81 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/conversations/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/conversations/81"
);
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/81"
);
const conversation = (await res.json()) as Conversation;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/81"
)
conversation = res.json() {
"id": 81,
"title": "Travel Planning 52",
"isGroup": true,
"createdAt": "2025-05-26T18:44:34.233Z",
"updatedAt": "2025-07-26T09:45:52.062Z"
}