attachments
attachments
Page 19 of 34.
Overview
-
User #129 attached image/jpeg (8655480 bytes)
2/28/2026, 10:36:54 AM
View record -
User #185 attached image/png (43456060 bytes)
3/12/2026, 12:38:58 AM
View record -
User #163 attached image/png (39143362 bytes)
4/1/2026, 7:52:06 AM
View record -
User #188 attached image/jpeg (2830295 bytes)
9/20/2025, 6:16:14 AM
View record -
User #213 attached image/png (39895385 bytes)
7/4/2025, 1:16:15 PM
View record -
User #49 attached video/mp4 (48148669 bytes)
6/5/2025, 12:31:06 PM
View record -
User #83 attached image/jpeg (45657261 bytes)
2/6/2026, 12:16:15 PM
View record -
User #1 attached image/jpeg (43940689 bytes)
10/25/2025, 7:52:37 AM
View record -
User #4 attached application/pdf (3049326 bytes)
6/18/2025, 12:38:52 PM
View record -
User #100 attached image/webp (20496562 bytes)
1/22/2026, 7:19:06 PM
View record -
User #169 attached application/pdf (42718532 bytes)
4/20/2026, 2:13:23 PM
View record -
User #86 attached application/pdf (19348590 bytes)
1/23/2026, 10:49:22 PM
View record -
User #62 attached video/mp4 (8104930 bytes)
4/9/2026, 8:32:46 PM
View record -
User #153 attached video/mp4 (25697700 bytes)
8/20/2025, 12:34:07 AM
View record -
User #86 attached image/png (704175 bytes)
7/17/2025, 1:23:06 PM
View record -
User #5 attached image/webp (30062974 bytes)
2/8/2026, 2:22:44 AM
View record -
User #109 attached application/pdf (23573879 bytes)
1/30/2026, 6:54:50 PM
View record -
User #93 attached image/webp (22508998 bytes)
11/14/2025, 5:00:18 AM
View record -
User #77 attached image/webp (26649529 bytes)
2/13/2026, 12:58:38 PM
View record -
User #162 attached application/pdf (37812835 bytes)
2/15/2026, 2:06:36 AM
View record -
User #43 attached image/png (28928605 bytes)
5/12/2026, 9:45:00 AM
View record -
User #228 attached image/webp (1629380 bytes)
10/4/2025, 1:25:00 AM
View record -
User #202 attached image/jpeg (33887722 bytes)
2/4/2026, 6:19:21 AM
View record -
User #30 attached image/webp (8789529 bytes)
4/25/2026, 4:53:37 AM
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": 433,
"userId": 129,
"targetType": "recipe",
"targetId": 141,
"url": "https://picsum.photos/seed/attachment-433/1200/600",
"mimeType": "image/jpeg",
"sizeBytes": 8655480,
"createdAt": "2026-02-28T10:36:54.670Z"
},
{
"id": 434,
"userId": 185,
"targetType": "product",
"targetId": 180,
"url": "https://picsum.photos/seed/attachment-434/1200/300",
"mimeType": "image/png",
"sizeBytes": 43456060,
"createdAt": "2026-03-12T00:38:58.440Z"
},
{
"id": 435,
"userId": 163,
"targetType": "recipe",
"targetId": 231,
"url": "https://picsum.photos/seed/attachment-435/800/400",
"mimeType": "image/png",
"sizeBytes": 39143362,
"createdAt": "2026-04-01T07:52:06.591Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=19&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=20&limit=24",
"prev": "/api/v1/attachments?page=18&limit=24"
}
}