example-data.com
Menu
Browse docs and collections

Overview

messages / #1271

Message #1271

· 5/13/2026

Comburo architecto bestia chirographum angulus brevis accendo creator. Demergo tres dapifer tabula patrocinor causa desparatus civitas similique asper. Torrens accedo totidem officia cohaero adhuc tracto tredecim casso comburo.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/messages/1271" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/messages/1271"
);
const message = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/messages.d.ts https://example-data.com/types/messages.d.ts
import type { Message } from "./types/messages";

const res = await fetch(
  "https://example-data.com/api/v1/messages/1271"
);
const message = (await res.json()) as Message;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/messages/1271"
)
message = res.json()

Response

{
  "id": 1271,
  "conversationId": 71,
  "userId": 248,
  "body": "Comburo architecto bestia chirographum angulus brevis accendo creator. Demergo tres dapifer tabula patrocinor causa desparatus civitas similique asper. Torrens accedo totidem officia cohaero adhuc tracto tredecim casso comburo.",
  "isEdited": false,
  "createdAt": "2026-05-13T16:06:58.133Z",
  "updatedAt": "2026-05-13T16:06:58.133Z"
}