attachments
attachments
Page 34 of 34.
Overview
-
User #222 attached image/webp (32383630 bytes)
5/25/2025, 5:07:32 PM
View record -
User #207 attached image/webp (8560247 bytes)
3/28/2026, 3:25:18 AM
View record -
User #90 attached image/png (24729234 bytes)
10/9/2025, 9:37:06 AM
View record -
User #232 attached application/pdf (4833272 bytes)
12/3/2025, 2:32:12 PM
View record -
User #127 attached image/png (26536375 bytes)
5/24/2025, 9:36:34 AM
View record -
User #55 attached application/pdf (19016066 bytes)
2/14/2026, 3:47:01 AM
View record -
User #149 attached image/webp (3490826 bytes)
2/22/2026, 10:20:29 PM
View record -
User #78 attached image/webp (22694781 bytes)
10/1/2025, 3:53:00 PM
View record
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/attachments?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/attachments";
const res = await fetch(
"https://example-data.com/api/v1/attachments?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Attachment>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 793,
"userId": 222,
"targetType": "post",
"targetId": 376,
"url": "https://picsum.photos/seed/attachment-793/1200/800",
"mimeType": "image/webp",
"sizeBytes": 32383630,
"createdAt": "2025-05-25T17:07:32.685Z"
},
{
"id": 794,
"userId": 207,
"targetType": "restaurant",
"targetId": 84,
"url": "https://picsum.photos/seed/attachment-794/400/300",
"mimeType": "image/webp",
"sizeBytes": 8560247,
"createdAt": "2026-03-28T03:25:18.128Z"
},
{
"id": 795,
"userId": 90,
"targetType": "recipe",
"targetId": 9,
"url": "https://picsum.photos/seed/attachment-795/1200/600",
"mimeType": "image/png",
"sizeBytes": 24729234,
"createdAt": "2025-10-09T09:37:06.785Z"
}
],
"meta": {
"page": 34,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=34&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": null,
"prev": "/api/v1/attachments?page=33&limit=24"
}
}