Music Lovers 52
- title
- Music Lovers 52
- isGroup
- true
- createdAt
- updatedAt
Overview
conversations / #109
Music Lovers 52
#109
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations/109" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/conversations/109" ); 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/109"
);
const conversation = (await res.json()) as Conversation; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations/109"
)
conversation = res.json() Response
{
"id": 109,
"title": "Music Lovers 52",
"isGroup": true,
"createdAt": "2026-05-01T22:19:58.960Z",
"updatedAt": "2026-05-18T14:57:44.715Z"
}