attachments
attachments
Page 2 of 34.
Overview
-
User #220 attached application/pdf (11575476 bytes)
7/7/2025, 6:36:22 AM
View record -
User #59 attached image/png (40430187 bytes)
4/15/2026, 6:03:55 AM
View record -
User #165 attached image/webp (14588636 bytes)
8/28/2025, 5:29:49 PM
View record -
User #177 attached video/mp4 (34311267 bytes)
7/14/2025, 6:58:24 AM
View record -
User #57 attached image/jpeg (4006861 bytes)
6/28/2025, 11:46:32 AM
View record -
User #60 attached image/jpeg (1845915 bytes)
10/7/2025, 10:07:43 PM
View record -
User #70 attached image/jpeg (33044028 bytes)
6/13/2025, 3:32:57 PM
View record -
User #170 attached image/jpeg (22017467 bytes)
4/24/2026, 2:14:01 PM
View record -
User #220 attached image/jpeg (38387976 bytes)
9/12/2025, 9:17:06 AM
View record -
User #242 attached application/pdf (34078355 bytes)
12/15/2025, 9:21:29 PM
View record -
User #47 attached video/mp4 (48755134 bytes)
3/15/2026, 8:16:24 PM
View record -
User #133 attached image/webp (34525821 bytes)
4/10/2026, 7:18:20 PM
View record -
User #117 attached image/png (9409851 bytes)
3/9/2026, 6:31:07 AM
View record -
User #186 attached image/webp (17743759 bytes)
7/13/2025, 8:54:18 PM
View record -
User #75 attached application/pdf (13723195 bytes)
3/14/2026, 6:40:48 PM
View record -
User #77 attached video/mp4 (22182297 bytes)
4/2/2026, 12:04:03 AM
View record -
User #195 attached application/pdf (33624868 bytes)
8/8/2025, 1:39:10 PM
View record -
User #132 attached image/jpeg (32174012 bytes)
12/5/2025, 2:20:52 AM
View record -
User #233 attached video/mp4 (7722267 bytes)
10/4/2025, 10:55:15 PM
View record -
User #226 attached video/mp4 (22097560 bytes)
5/30/2025, 1:28:14 PM
View record -
User #187 attached image/webp (8436911 bytes)
2/3/2026, 2:20:12 PM
View record -
User #17 attached video/mp4 (38879696 bytes)
9/19/2025, 4:34:37 AM
View record -
User #144 attached video/mp4 (8936226 bytes)
9/6/2025, 10:13:11 AM
View record -
User #74 attached application/pdf (4916669 bytes)
11/18/2025, 6:30:23 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": 25,
"userId": 220,
"targetType": "recipe",
"targetId": 19,
"url": "https://example.com/files/attachment-25.pdf",
"mimeType": "application/pdf",
"sizeBytes": 11575476,
"createdAt": "2025-07-07T06:36:22.763Z"
},
{
"id": 26,
"userId": 59,
"targetType": "post",
"targetId": 345,
"url": "https://picsum.photos/seed/attachment-26/1200/400",
"mimeType": "image/png",
"sizeBytes": 40430187,
"createdAt": "2026-04-15T06:03:55.539Z"
},
{
"id": 27,
"userId": 165,
"targetType": "product",
"targetId": 109,
"url": "https://picsum.photos/seed/attachment-27/800/300",
"mimeType": "image/webp",
"sizeBytes": 14588636,
"createdAt": "2025-08-28T17:29:49.748Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=2&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=3&limit=24",
"prev": "/api/v1/attachments?page=1&limit=24"
}
}