attachments
attachments
Page 27 of 34.
Overview
-
User #210 attached application/pdf (40258637 bytes)
11/22/2025, 4:26:48 PM
View record -
User #15 attached image/webp (39788738 bytes)
2/21/2026, 11:20:36 AM
View record -
User #107 attached image/jpeg (30370463 bytes)
11/12/2025, 12:53:55 PM
View record -
User #158 attached image/jpeg (41878404 bytes)
12/21/2025, 7:45:38 AM
View record -
User #56 attached image/png (6829495 bytes)
5/17/2026, 5:23:35 AM
View record -
User #11 attached image/jpeg (43366433 bytes)
2/12/2026, 7:59:32 AM
View record -
User #31 attached image/png (277540 bytes)
9/7/2025, 9:46:48 AM
View record -
User #105 attached image/jpeg (47579081 bytes)
8/29/2025, 6:10:46 AM
View record -
User #170 attached image/png (16621708 bytes)
11/29/2025, 3:55:00 AM
View record -
User #68 attached application/pdf (22930186 bytes)
2/17/2026, 11:48:13 PM
View record -
User #112 attached image/jpeg (14428834 bytes)
8/27/2025, 4:12:09 AM
View record -
User #174 attached application/pdf (19757888 bytes)
12/26/2025, 6:21:05 PM
View record -
User #238 attached application/pdf (27317999 bytes)
12/22/2025, 6:25:33 PM
View record -
User #114 attached image/png (45737591 bytes)
11/10/2025, 11:07:19 PM
View record -
User #72 attached image/jpeg (2985468 bytes)
9/27/2025, 4:36:37 AM
View record -
User #49 attached image/webp (1552330 bytes)
8/6/2025, 9:02:37 AM
View record -
User #166 attached image/png (45127813 bytes)
5/17/2026, 8:03:15 PM
View record -
User #57 attached image/png (43345663 bytes)
7/11/2025, 11:11:55 AM
View record -
User #25 attached application/pdf (46962991 bytes)
3/29/2026, 1:27:49 AM
View record -
User #201 attached image/png (18721349 bytes)
4/20/2026, 10:00:23 PM
View record -
User #21 attached image/jpeg (14287148 bytes)
6/21/2025, 3:28:10 PM
View record -
User #217 attached image/jpeg (39601907 bytes)
11/26/2025, 3:47:04 AM
View record -
User #154 attached image/webp (8200364 bytes)
9/18/2025, 12:49:23 PM
View record -
User #202 attached image/jpeg (5859486 bytes)
4/28/2026, 9:34:14 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": 625,
"userId": 210,
"targetType": "recipe",
"targetId": 111,
"url": "https://example.com/files/attachment-625.pdf",
"mimeType": "application/pdf",
"sizeBytes": 40258637,
"createdAt": "2025-11-22T16:26:48.260Z"
},
{
"id": 626,
"userId": 15,
"targetType": "product",
"targetId": 22,
"url": "https://picsum.photos/seed/attachment-626/400/600",
"mimeType": "image/webp",
"sizeBytes": 39788738,
"createdAt": "2026-02-21T11:20:36.739Z"
},
{
"id": 627,
"userId": 107,
"targetType": "recipe",
"targetId": 225,
"url": "https://picsum.photos/seed/attachment-627/400/400",
"mimeType": "image/jpeg",
"sizeBytes": 30370463,
"createdAt": "2025-11-12T12:53:55.617Z"
}
],
"meta": {
"page": 27,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=27&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=28&limit=24",
"prev": "/api/v1/attachments?page=26&limit=24"
}
}