Coffee Break 13
- title
- Coffee Break 13
- isGroup
- true
- createdAt
- updatedAt
Overview
conversations / #165
Coffee Break 13
#165
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/conversations/165" ); const conversation = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/conversations.d.ts https://example-data.com/types/conversations.d.ts
import type { Conversation } from "./types/conversations";
const res = await fetch(
"https://example-data.com/api/v1/conversations/165"
);
const conversation = (await res.json()) as Conversation; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/165"
)
conversation = res.json() Response
{
"id": 165,
"title": "Coffee Break 13",
"isGroup": true,
"createdAt": "2025-08-24T03:00:27.971Z",
"updatedAt": "2025-09-17T17:28:12.842Z"
}