attachments
attachments
Page 25 of 34.
Overview
-
User #222 attached video/mp4 (10046677 bytes)
11/2/2025, 9:31:52 AM
View record -
User #191 attached video/mp4 (41414036 bytes)
4/11/2026, 12:02:38 AM
View record -
User #47 attached image/png (5672553 bytes)
10/28/2025, 6:23:33 PM
View record -
User #191 attached application/pdf (12493416 bytes)
9/11/2025, 10:48:23 PM
View record -
User #54 attached application/pdf (33534592 bytes)
5/10/2026, 9:20:37 AM
View record -
User #138 attached image/webp (23556190 bytes)
11/29/2025, 7:46:07 PM
View record -
User #220 attached image/png (27638069 bytes)
10/25/2025, 11:52:47 AM
View record -
User #231 attached video/mp4 (19652851 bytes)
10/9/2025, 2:10:07 AM
View record -
User #161 attached image/jpeg (31668778 bytes)
11/9/2025, 11:11:51 PM
View record -
User #78 attached image/png (6781584 bytes)
4/3/2026, 11:45:54 AM
View record -
User #92 attached video/mp4 (46320696 bytes)
11/20/2025, 3:21:12 PM
View record -
User #94 attached image/jpeg (12091161 bytes)
4/16/2026, 8:42:03 AM
View record -
User #88 attached image/webp (22023774 bytes)
4/6/2026, 4:49:53 AM
View record -
User #94 attached image/png (8291315 bytes)
2/24/2026, 5:50:15 PM
View record -
User #53 attached video/mp4 (2371306 bytes)
12/15/2025, 5:35:54 AM
View record -
User #9 attached video/mp4 (22200689 bytes)
9/26/2025, 12:20:32 AM
View record -
User #45 attached image/jpeg (47987063 bytes)
1/13/2026, 11:04:03 AM
View record -
User #34 attached image/jpeg (19184708 bytes)
2/5/2026, 5:42:26 AM
View record -
User #229 attached video/mp4 (12279588 bytes)
5/20/2026, 6:04:57 PM
View record -
User #140 attached image/webp (35903033 bytes)
2/21/2026, 11:04:39 AM
View record -
User #229 attached image/png (41311902 bytes)
4/29/2026, 5:27:50 PM
View record -
User #170 attached image/png (40983028 bytes)
1/26/2026, 6:31:55 PM
View record -
User #169 attached image/png (9405450 bytes)
1/4/2026, 2:34:56 PM
View record -
User #79 attached image/webp (49686271 bytes)
7/13/2025, 3:14:02 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": 577,
"userId": 222,
"targetType": "restaurant",
"targetId": 56,
"url": "https://example.com/files/attachment-577.mp4",
"mimeType": "video/mp4",
"sizeBytes": 10046677,
"createdAt": "2025-11-02T09:31:52.523Z"
},
{
"id": 578,
"userId": 191,
"targetType": "recipe",
"targetId": 118,
"url": "https://example.com/files/attachment-578.mp4",
"mimeType": "video/mp4",
"sizeBytes": 41414036,
"createdAt": "2026-04-11T00:02:38.369Z"
},
{
"id": 579,
"userId": 47,
"targetType": "recipe",
"targetId": 50,
"url": "https://picsum.photos/seed/attachment-579/600/800",
"mimeType": "image/png",
"sizeBytes": 5672553,
"createdAt": "2025-10-28T18:23:33.865Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=25&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=26&limit=24",
"prev": "/api/v1/attachments?page=24&limit=24"
}
}