List all attachments
Returns a list of all the attachments in the given card. The attachments are returned sorted by creation date, with the most recently created attachments appearing first.
Returns
Return a paginated response that contains an array of up to the specified limit of attachments.
get
/api/cards/{id}/attachments
curl https://{workspace}.kitchen.co/api/cards/{id}/attachments \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
{
"data": [
{
"id": "fi_081dcab571f6c37d709078ce",
"name": "Screenshot.png",
"size": 348208,
"mime_type": "image/png",
"extension": "png",
"url": "https://k.assets-edge.com/u/ws_046457c4dcfcc7986383e7f4/685132c3e2464-screenshot.png",
"thumbnail": "https://k.assets-edge.com/previews/ws_046457c4dcfcc7986383e7f4/685132c614920-screenshot-476.png",
"created_at": "2025-06-17T09:17:56+00:00"
}
],
"links": {
"first": "/api/cards/tsk_9bbcb52099a37312fbff58c8/attachments?page=1",
"last": "/api/cards/tsk_9bbcb52099a37312fbff58c8/attachments?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/api/cards/tsk_9bbcb52099a37312fbff58c8/attachments?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/api/cards/tsk_9bbcb52099a37312fbff58c8/attachments",
"per_page": 20,
"to": 1,
"total": 1
}
}