attachments
attachments
Page 21 of 34.
Overview
-
User #224 attached application/pdf (29603009 bytes)
8/3/2025, 8:22:34 AM
View record -
User #70 attached image/jpeg (4804364 bytes)
1/17/2026, 5:45:22 PM
View record -
User #125 attached image/webp (47693716 bytes)
1/15/2026, 5:12:40 AM
View record -
User #128 attached application/pdf (8223690 bytes)
1/3/2026, 5:31:46 PM
View record -
User #213 attached image/png (38849411 bytes)
3/13/2026, 5:17:43 PM
View record -
User #156 attached image/webp (31141921 bytes)
4/10/2026, 6:14:52 PM
View record -
User #213 attached image/jpeg (42239699 bytes)
12/7/2025, 3:08:30 PM
View record -
User #18 attached image/webp (6873540 bytes)
11/6/2025, 4:51:50 PM
View record -
User #92 attached image/webp (28647631 bytes)
10/8/2025, 5:13:55 PM
View record -
User #201 attached image/webp (44976310 bytes)
5/1/2026, 12:12:23 PM
View record -
User #200 attached image/jpeg (6011077 bytes)
5/23/2025, 2:48:03 AM
View record -
User #74 attached image/png (21829886 bytes)
9/5/2025, 12:26:18 PM
View record -
User #133 attached application/pdf (15244402 bytes)
3/17/2026, 1:18:44 PM
View record -
User #97 attached video/mp4 (36362845 bytes)
8/19/2025, 9:48:34 PM
View record -
User #150 attached image/png (20856430 bytes)
4/4/2026, 12:43:03 AM
View record -
User #244 attached application/pdf (13445753 bytes)
5/10/2026, 11:11:19 PM
View record -
User #247 attached image/webp (19090990 bytes)
10/15/2025, 6:39:29 AM
View record -
User #37 attached application/pdf (36717690 bytes)
1/19/2026, 9:57:24 AM
View record -
User #177 attached image/jpeg (13336392 bytes)
10/14/2025, 2:16:23 PM
View record -
User #48 attached image/jpeg (33766596 bytes)
10/5/2025, 1:10:15 PM
View record -
User #236 attached image/png (20406088 bytes)
8/13/2025, 2:05:38 AM
View record -
User #107 attached application/pdf (17621893 bytes)
6/2/2025, 2:59:58 AM
View record -
User #165 attached image/png (25106768 bytes)
3/12/2026, 4:20:44 PM
View record -
User #243 attached image/png (46222073 bytes)
12/3/2025, 2:15:02 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": 481,
"userId": 224,
"targetType": "restaurant",
"targetId": 97,
"url": "https://example.com/files/attachment-481.pdf",
"mimeType": "application/pdf",
"sizeBytes": 29603009,
"createdAt": "2025-08-03T08:22:34.515Z"
},
{
"id": 482,
"userId": 70,
"targetType": "restaurant",
"targetId": 21,
"url": "https://picsum.photos/seed/attachment-482/400/300",
"mimeType": "image/jpeg",
"sizeBytes": 4804364,
"createdAt": "2026-01-17T17:45:22.540Z"
},
{
"id": 483,
"userId": 125,
"targetType": "restaurant",
"targetId": 55,
"url": "https://picsum.photos/seed/attachment-483/600/400",
"mimeType": "image/webp",
"sizeBytes": 47693716,
"createdAt": "2026-01-15T05:12:40.024Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=21&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=22&limit=24",
"prev": "/api/v1/attachments?page=20&limit=24"
}
}