attachments
attachments
Page 20 of 34.
Overview
-
User #69 attached image/webp (44561178 bytes)
2/8/2026, 8:38:39 PM
View record -
User #56 attached video/mp4 (31644228 bytes)
5/18/2026, 11:00:11 PM
View record -
User #69 attached video/mp4 (22398897 bytes)
8/1/2025, 1:52:06 AM
View record -
User #228 attached image/png (41067524 bytes)
2/5/2026, 1:06:19 PM
View record -
User #49 attached image/webp (16592056 bytes)
12/16/2025, 10:28:19 PM
View record -
User #97 attached image/jpeg (7587074 bytes)
1/22/2026, 10:29:21 PM
View record -
User #102 attached video/mp4 (26941435 bytes)
4/2/2026, 2:31:37 PM
View record -
User #79 attached image/png (246646 bytes)
5/15/2026, 3:31:12 PM
View record -
User #56 attached image/webp (47129289 bytes)
7/15/2025, 2:43:21 PM
View record -
User #123 attached image/jpeg (6279227 bytes)
10/19/2025, 1:24:12 AM
View record -
User #35 attached image/webp (49682647 bytes)
3/10/2026, 5:49:39 PM
View record -
User #90 attached image/png (46898331 bytes)
3/23/2026, 11:14:55 PM
View record -
User #134 attached image/webp (11877189 bytes)
6/20/2025, 11:13:51 AM
View record -
User #74 attached image/png (35593401 bytes)
4/21/2026, 3:39:24 AM
View record -
User #117 attached image/webp (4744664 bytes)
3/13/2026, 12:12:18 PM
View record -
User #209 attached application/pdf (10267785 bytes)
11/15/2025, 4:25:32 PM
View record -
User #169 attached image/jpeg (39804934 bytes)
1/10/2026, 4:11:20 PM
View record -
User #66 attached image/webp (42263739 bytes)
11/6/2025, 5:27:01 AM
View record -
User #125 attached image/webp (7699971 bytes)
7/13/2025, 10:19:40 PM
View record -
User #77 attached application/pdf (42154926 bytes)
2/11/2026, 5:26:06 PM
View record -
User #99 attached image/jpeg (36041876 bytes)
11/15/2025, 1:04:40 PM
View record -
User #152 attached image/png (33737361 bytes)
2/2/2026, 6:09:13 AM
View record -
User #42 attached image/png (13699798 bytes)
8/20/2025, 4:55:01 AM
View record -
User #152 attached image/jpeg (49038515 bytes)
11/29/2025, 8:47:23 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": 457,
"userId": 69,
"targetType": "recipe",
"targetId": 27,
"url": "https://picsum.photos/seed/attachment-457/1200/600",
"mimeType": "image/webp",
"sizeBytes": 44561178,
"createdAt": "2026-02-08T20:38:39.269Z"
},
{
"id": 458,
"userId": 56,
"targetType": "product",
"targetId": 16,
"url": "https://example.com/files/attachment-458.mp4",
"mimeType": "video/mp4",
"sizeBytes": 31644228,
"createdAt": "2026-05-18T23:00:11.635Z"
},
{
"id": 459,
"userId": 69,
"targetType": "recipe",
"targetId": 57,
"url": "https://example.com/files/attachment-459.mp4",
"mimeType": "video/mp4",
"sizeBytes": 22398897,
"createdAt": "2025-08-01T01:52:06.784Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=20&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=21&limit=24",
"prev": "/api/v1/attachments?page=19&limit=24"
}
}