attachments
attachments
Page 22 of 34.
Overview
-
User #203 attached image/webp (8265051 bytes)
6/30/2025, 6:40:43 PM
View record -
User #221 attached application/pdf (31627007 bytes)
10/18/2025, 6:04:21 AM
View record -
User #211 attached image/webp (43512728 bytes)
2/12/2026, 7:06:44 AM
View record -
User #27 attached application/pdf (38082948 bytes)
8/29/2025, 6:17:28 PM
View record -
User #98 attached image/jpeg (33669104 bytes)
4/20/2026, 10:20:43 PM
View record -
User #16 attached image/jpeg (47204335 bytes)
8/5/2025, 8:21:55 PM
View record -
User #109 attached image/webp (3728111 bytes)
12/13/2025, 8:44:01 AM
View record -
User #47 attached image/png (25580660 bytes)
11/8/2025, 9:00:28 AM
View record -
User #25 attached video/mp4 (16383313 bytes)
2/10/2026, 1:47:25 PM
View record -
User #118 attached image/jpeg (13967065 bytes)
8/8/2025, 2:18:02 AM
View record -
User #128 attached image/png (9475319 bytes)
1/24/2026, 8:34:37 PM
View record -
User #180 attached image/jpeg (46932127 bytes)
7/17/2025, 9:57:43 PM
View record -
User #134 attached image/jpeg (5364366 bytes)
4/21/2026, 12:31:38 PM
View record -
User #38 attached video/mp4 (16333543 bytes)
7/5/2025, 5:06:36 AM
View record -
User #30 attached video/mp4 (13363670 bytes)
6/20/2025, 12:32:19 PM
View record -
User #76 attached image/webp (28465542 bytes)
10/16/2025, 5:08:06 AM
View record -
User #210 attached application/pdf (13348084 bytes)
11/29/2025, 11:10:16 AM
View record -
User #151 attached image/webp (14333090 bytes)
3/6/2026, 7:43:09 PM
View record -
User #44 attached image/png (30023125 bytes)
3/7/2026, 7:21:09 PM
View record -
User #180 attached video/mp4 (23230120 bytes)
9/5/2025, 3:09:25 AM
View record -
User #71 attached image/jpeg (30860390 bytes)
10/4/2025, 7:00:51 AM
View record -
User #176 attached video/mp4 (33246949 bytes)
10/31/2025, 11:07:10 PM
View record -
User #167 attached image/jpeg (992602 bytes)
2/6/2026, 6:11:17 AM
View record -
User #214 attached image/webp (18351833 bytes)
3/13/2026, 2:35:03 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": 505,
"userId": 203,
"targetType": "product",
"targetId": 43,
"url": "https://picsum.photos/seed/attachment-505/800/400",
"mimeType": "image/webp",
"sizeBytes": 8265051,
"createdAt": "2025-06-30T18:40:43.747Z"
},
{
"id": 506,
"userId": 221,
"targetType": "product",
"targetId": 108,
"url": "https://example.com/files/attachment-506.pdf",
"mimeType": "application/pdf",
"sizeBytes": 31627007,
"createdAt": "2025-10-18T06:04:21.883Z"
},
{
"id": 507,
"userId": 211,
"targetType": "comment",
"targetId": 1225,
"url": "https://picsum.photos/seed/attachment-507/800/400",
"mimeType": "image/webp",
"sizeBytes": 43512728,
"createdAt": "2026-02-12T07:06:44.029Z"
}
],
"meta": {
"page": 22,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=22&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=23&limit=24",
"prev": "/api/v1/attachments?page=21&limit=24"
}
}