example-data.com
Menu
Browse docs and collections

Overview

attachments / #516

Activity #516

User #180 attached image/jpeg (46932127 bytes)

7/17/2025, 9:57:43 PM

Component variants

Medium
Small

User #180 attached image/jpeg (46932127 bytes) · 7/17/2025, 9:57:43 PM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/attachments/516"
);
const attachment = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/attachments/516"
);
const attachment = (await res.json()) as Attachment;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/attachments/516"
)
attachment = res.json()

Response

{
  "id": 516,
  "userId": 180,
  "targetType": "restaurant",
  "targetId": 43,
  "url": "https://picsum.photos/seed/attachment-516/600/600",
  "mimeType": "image/jpeg",
  "sizeBytes": 46932127,
  "createdAt": "2025-07-17T21:57:43.579Z"
}