example-data.com
Menu
Browse docs and collections

Overview

messages / #2360

Message #2360

· 2/12/2026

Quae thesis thema.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/messages/2360"
);
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/2360"
);
const message = (await res.json()) as Message;

Python example

import requests

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

Response

{
  "id": 2360,
  "conversationId": 128,
  "userId": 240,
  "body": "Quae thesis thema.",
  "isEdited": false,
  "createdAt": "2026-02-12T13:46:44.881Z",
  "updatedAt": "2026-02-12T13:46:44.881Z"
}