const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.thanks.io/api/v2/orders/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": 42708,
"message": "Hey %FIRST_NAME%!,\n\nTHANK YOU for allowing us the opportunity to HELP you with your plan!",
"size": "4x6",
"sub_account_id": null,
"type": "postcard",
"display_type": "Postcard-4x6",
"style": 1,
"front_image": "https://d2md0c8rpvzmz5.cloudfront.net/letter-backgrounds/bg0.png",
"high_quality_preview": "",
"authorization_total": 73,
"grand_total": 73,
"order_total": 73,
"total_estimated_recipients": 1,
"total_recipients": 1,
"recipient_count": 1,
"status": "Fulfilled",
"method": "Campaign",
"cancellable": false,
"total_scans": 0,
"created_at": "2025-09-08T16:05:12.000000Z",
"updated_at": "2025-09-08T16:06:08.000000Z"
}
],
"links": {
"first": "https://api.thanks.io/api/v2/orders/list?page=1",
"last": "https://api.thanks.io/api/v2/orders/list?page=4992",
"prev": null,
"next": "https://api.thanks.io/api/v2/orders/list?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 4992,
"path": "https://api.thanks.io/api/v2/orders/list",
"per_page": "1",
"to": 1,
"total": 4992
}
}Return list of recent orders.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.thanks.io/api/v2/orders/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": 42708,
"message": "Hey %FIRST_NAME%!,\n\nTHANK YOU for allowing us the opportunity to HELP you with your plan!",
"size": "4x6",
"sub_account_id": null,
"type": "postcard",
"display_type": "Postcard-4x6",
"style": 1,
"front_image": "https://d2md0c8rpvzmz5.cloudfront.net/letter-backgrounds/bg0.png",
"high_quality_preview": "",
"authorization_total": 73,
"grand_total": 73,
"order_total": 73,
"total_estimated_recipients": 1,
"total_recipients": 1,
"recipient_count": 1,
"status": "Fulfilled",
"method": "Campaign",
"cancellable": false,
"total_scans": 0,
"created_at": "2025-09-08T16:05:12.000000Z",
"updated_at": "2025-09-08T16:06:08.000000Z"
}
],
"links": {
"first": "https://api.thanks.io/api/v2/orders/list?page=1",
"last": "https://api.thanks.io/api/v2/orders/list?page=4992",
"prev": null,
"next": "https://api.thanks.io/api/v2/orders/list?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 4992,
"path": "https://api.thanks.io/api/v2/orders/list",
"per_page": "1",
"to": 1,
"total": 4992
}
}Bearer token authentication using your thanks.io API key
Number of items to return per page.
Filter results by Sub Account ID.
Was this page helpful?