Skip to main content
GET
/
orders
/
list
List 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
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication using your thanks.io API key

Query Parameters

items_per_page
integer
default:25

Number of items to return per page.

sub_account_id
integer

Filter results by Sub Account ID.

Response

OK

data
object[]
meta
object