attachments
attachments
Page 17 of 34.
Overview
-
User #184 attached application/pdf (20180047 bytes)
7/25/2025, 2:33:39 AM
View record -
User #161 attached image/jpeg (28529728 bytes)
2/2/2026, 2:12:50 AM
View record -
User #124 attached image/webp (40645995 bytes)
7/29/2025, 9:41:47 AM
View record -
User #8 attached image/webp (2532115 bytes)
5/3/2026, 10:32:52 PM
View record -
User #157 attached application/pdf (43048978 bytes)
11/2/2025, 10:59:02 AM
View record -
User #29 attached image/jpeg (11659499 bytes)
11/7/2025, 12:21:51 PM
View record -
User #182 attached image/webp (49838322 bytes)
6/26/2025, 12:05:27 PM
View record -
User #115 attached image/webp (30978105 bytes)
3/29/2026, 9:53:13 PM
View record -
User #11 attached image/webp (8314282 bytes)
12/29/2025, 10:00:05 AM
View record -
User #106 attached image/webp (35862572 bytes)
5/20/2026, 5:11:58 PM
View record -
User #178 attached video/mp4 (47118179 bytes)
8/17/2025, 8:38:01 PM
View record -
User #44 attached image/jpeg (708355 bytes)
10/17/2025, 5:35:23 PM
View record -
User #79 attached image/png (22283170 bytes)
5/18/2026, 4:47:34 AM
View record -
User #221 attached image/png (31929552 bytes)
2/12/2026, 7:47:24 PM
View record -
User #134 attached video/mp4 (8361288 bytes)
9/16/2025, 4:30:12 AM
View record -
User #244 attached image/webp (40811452 bytes)
2/25/2026, 9:58:58 AM
View record -
User #214 attached image/png (18652763 bytes)
7/8/2025, 10:47:09 AM
View record -
User #28 attached image/png (30767561 bytes)
12/9/2025, 9:43:14 PM
View record -
User #52 attached image/jpeg (20234101 bytes)
12/22/2025, 9:53:56 PM
View record -
User #149 attached video/mp4 (27770102 bytes)
6/28/2025, 2:52:06 AM
View record -
User #30 attached image/jpeg (47495886 bytes)
9/18/2025, 3:20:58 AM
View record -
User #223 attached image/webp (30840420 bytes)
1/29/2026, 8:48:58 PM
View record -
User #180 attached image/jpeg (10564724 bytes)
8/8/2025, 2:40:30 AM
View record -
User #78 attached image/jpeg (46545037 bytes)
3/23/2026, 10:16:44 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": 385,
"userId": 184,
"targetType": "restaurant",
"targetId": 22,
"url": "https://example.com/files/attachment-385.pdf",
"mimeType": "application/pdf",
"sizeBytes": 20180047,
"createdAt": "2025-07-25T02:33:39.885Z"
},
{
"id": 386,
"userId": 161,
"targetType": "post",
"targetId": 463,
"url": "https://picsum.photos/seed/attachment-386/1200/800",
"mimeType": "image/jpeg",
"sizeBytes": 28529728,
"createdAt": "2026-02-02T02:12:50.129Z"
},
{
"id": 387,
"userId": 124,
"targetType": "product",
"targetId": 150,
"url": "https://picsum.photos/seed/attachment-387/1200/800",
"mimeType": "image/webp",
"sizeBytes": 40645995,
"createdAt": "2025-07-29T09:41:47.629Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/attachments?page=17&limit=24",
"first": "/api/v1/attachments?page=1&limit=24",
"last": "/api/v1/attachments?page=34&limit=24",
"next": "/api/v1/attachments?page=18&limit=24",
"prev": "/api/v1/attachments?page=16&limit=24"
}
}