Tech Talk 71
- title
- Tech Talk 71
- isGroup
- true
- createdAt
- updatedAt
Overview
conversations / #40
Tech Talk 71
#40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/conversations/40" ); 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/40"
);
const conversation = (await res.json()) as Conversation; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/40"
)
conversation = res.json() Response
{
"id": 40,
"title": "Tech Talk 71",
"isGroup": true,
"createdAt": "2025-08-29T16:43:49.047Z",
"updatedAt": "2025-11-16T00:02:02.580Z"
}