conversations #38
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Overview
conversations / #38
#38
#38
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/conversations/38" ); 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/38"
);
const conversation = (await res.json()) as Conversation; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/38"
)
conversation = res.json() Response
{
"id": 38,
"title": null,
"isGroup": false,
"createdAt": "2026-01-19T23:17:06.737Z",
"updatedAt": "2026-05-13T04:53:48.501Z"
}