attachments
attachments
Page 8 of 34.
Overview
-
User #37 attached application/pdf (20418778 bytes)
3/31/2026, 7:52:33 PM
View record -
User #181 attached video/mp4 (13496817 bytes)
10/20/2025, 2:05:45 AM
View record -
User #179 attached video/mp4 (32616215 bytes)
12/25/2025, 1:01:00 AM
View record -
User #61 attached image/png (44050254 bytes)
7/29/2025, 6:29:31 PM
View record -
User #82 attached image/webp (14639148 bytes)
8/3/2025, 9:22:36 AM
View record -
User #106 attached image/jpeg (4838636 bytes)
9/27/2025, 7:07:56 AM
View record -
User #162 attached image/png (46660993 bytes)
8/22/2025, 12:11:29 PM
View record -
User #116 attached image/webp (44324382 bytes)
11/20/2025, 6:19:03 PM
View record -
User #64 attached image/png (15429562 bytes)
11/5/2025, 12:43:33 AM
View record -
User #190 attached image/webp (20139624 bytes)
1/19/2026, 11:19:36 AM
View record -
User #92 attached application/pdf (29751735 bytes)
2/16/2026, 3:18:23 PM
View record -
User #4 attached video/mp4 (14763465 bytes)
8/22/2025, 1:03:14 AM
View record -
User #65 attached image/webp (22236131 bytes)
12/17/2025, 12:11:54 PM
View record -
User #136 attached video/mp4 (34925957 bytes)
8/9/2025, 9:06:17 PM
View record -
User #207 attached image/webp (8920916 bytes)
1/30/2026, 5:36:18 AM
View record -
User #10 attached image/webp (18258601 bytes)
5/19/2026, 10:51:55 PM
View record -
User #151 attached image/jpeg (33876999 bytes)
10/5/2025, 6:12:04 PM
View record -
User #4 attached application/pdf (36258521 bytes)
12/20/2025, 7:21:06 PM
View record -
User #128 attached image/jpeg (42783005 bytes)
4/19/2026, 2:09:39 PM
View record -
User #239 attached image/webp (2964873 bytes)
10/21/2025, 10:43:39 PM
View record -
User #166 attached image/png (42142855 bytes)
12/7/2025, 12:06:03 AM
View record -
User #37 attached image/webp (24489828 bytes)
2/23/2026, 1:38:02 PM
View record -
User #159 attached image/png (17448451 bytes)
9/10/2025, 11:07:24 AM
View record -
User #12 attached image/png (13635853 bytes)
11/30/2025, 5:56:39 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": 169,
"userId": 37,
"targetType": "comment",
"targetId": 220,
"url": "https://example.com/files/attachment-169.pdf",
"mimeType": "application/pdf",
"sizeBytes": 20418778,
"createdAt": "2026-03-31T19:52:33.945Z"
},
{
"id": 170,
"userId": 181,
"targetType": "product",
"targetId": 89,
"url": "https://example.com/files/attachment-170.mp4",
"mimeType": "video/mp4",
"sizeBytes": 13496817,
"createdAt": "2025-10-20T02:05:45.810Z"
},
{
"id": 171,
"userId": 179,
"targetType": "comment",
"targetId": 1349,
"url": "https://example.com/files/attachment-171.mp4",
"mimeType": "video/mp4",
"sizeBytes": 32616215,
"createdAt": "2025-12-25T01:01:00.786Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=8&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=9&limit=24",
"prev": "/api/v1/attachments?page=7&limit=24"
}
}