attachments
attachments
Page 12 of 34.
Overview
-
User #86 attached image/jpeg (18517719 bytes)
6/30/2025, 1:32:48 AM
View record -
User #230 attached image/jpeg (49941378 bytes)
2/14/2026, 7:35:10 PM
View record -
User #200 attached image/webp (16896215 bytes)
8/11/2025, 7:52:54 AM
View record -
User #233 attached application/pdf (25371071 bytes)
12/2/2025, 10:41:07 PM
View record -
User #46 attached image/png (38425722 bytes)
1/29/2026, 4:33:02 AM
View record -
User #175 attached video/mp4 (43883270 bytes)
5/27/2025, 12:15:33 PM
View record -
User #91 attached image/png (48714590 bytes)
9/24/2025, 12:03:07 PM
View record -
User #101 attached image/jpeg (31954740 bytes)
8/18/2025, 7:02:04 PM
View record -
User #181 attached image/jpeg (16421889 bytes)
1/21/2026, 6:01:08 AM
View record -
User #84 attached image/png (18828425 bytes)
12/18/2025, 3:32:49 AM
View record -
User #125 attached image/jpeg (22092523 bytes)
5/18/2026, 6:35:45 PM
View record -
User #199 attached image/png (12800072 bytes)
11/14/2025, 1:42:34 AM
View record -
User #250 attached video/mp4 (10427607 bytes)
3/28/2026, 8:09:25 PM
View record -
User #33 attached image/webp (26732108 bytes)
9/25/2025, 4:25:46 AM
View record -
User #108 attached image/webp (3858311 bytes)
5/24/2025, 10:41:05 AM
View record -
User #222 attached image/png (16059781 bytes)
11/1/2025, 2:49:25 AM
View record -
User #69 attached application/pdf (41069579 bytes)
9/18/2025, 1:54:38 PM
View record -
User #143 attached image/webp (49869991 bytes)
7/6/2025, 12:53:23 PM
View record -
User #65 attached image/webp (21730194 bytes)
6/15/2025, 12:07:42 PM
View record -
User #5 attached video/mp4 (5658475 bytes)
11/28/2025, 10:45:28 AM
View record -
User #157 attached image/jpeg (11688524 bytes)
1/24/2026, 7:20:55 PM
View record -
User #200 attached image/png (43944744 bytes)
8/27/2025, 4:58:48 PM
View record -
User #37 attached image/webp (36230156 bytes)
8/27/2025, 10:09:03 PM
View record -
User #59 attached image/webp (19697896 bytes)
5/15/2026, 11:31: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": 265,
"userId": 86,
"targetType": "restaurant",
"targetId": 27,
"url": "https://picsum.photos/seed/attachment-265/400/300",
"mimeType": "image/jpeg",
"sizeBytes": 18517719,
"createdAt": "2025-06-30T01:32:48.703Z"
},
{
"id": 266,
"userId": 230,
"targetType": "recipe",
"targetId": 47,
"url": "https://picsum.photos/seed/attachment-266/400/800",
"mimeType": "image/jpeg",
"sizeBytes": 49941378,
"createdAt": "2026-02-14T19:35:10.810Z"
},
{
"id": 267,
"userId": 200,
"targetType": "restaurant",
"targetId": 98,
"url": "https://picsum.photos/seed/attachment-267/600/800",
"mimeType": "image/webp",
"sizeBytes": 16896215,
"createdAt": "2025-08-11T07:52:54.262Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=12&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=13&limit=24",
"prev": "/api/v1/attachments?page=11&limit=24"
}
}