Search transactions with filters (date, invoice, fee type, etc.)
curl --request POST \
--url https://api.shipbob.com/2025-07/transactions:query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from_date": "2019-08-24",
"invoice_ids": [
"12345"
],
"invoiced_status": true,
"page_size": 10,
"reference_ids": [
"11553288",
"43-12000928-Pallet00"
],
"reference_types": [
"FC"
],
"sort_order": "Ascending",
"to_date": "2019-08-24",
"transaction_fees": [
"Kitting Fee",
"Warehousing Fee"
],
"transaction_types": [
"Charge"
]
}'
{
"first": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjre",
"items": [
{
"additional_details": {
"comment": "TestInvoice"
},
"amount": 0.09,
"charge_date": "2025-01-01",
"currency_code": "USD",
"fulfillment_center": "Altona VIC",
"invoice_date": "2025-01-01",
"invoice_id": 12345,
"invoice_type": "Shipping",
"invoiced_status": true,
"reference_id": "12345",
"reference_type": "Shipment",
"taxes": [
{
"tax_amount": 0.01,
"tax_rate": 10,
"tax_type": "GST"
}
],
"transaction_fee": "Shipping",
"transaction_type": "Charge"
}
],
"last": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjqt",
"next": "f8cUk/xjhyEYp2L8oHqxL2hFiGz3qjqt",
"prev": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjcc"
}
Authentication using Personal Access Token (PAT) token
[Optional] A pagination token used to jump to first, last, next or previous pages. When supplied, it overrides all other filter parameters.
Used to filter transactions based on search criteria. Required if cursor is not provided. Ignored when cursor is present (i.e., for paginated requests).
The body is of type object
.
Success
The response is of type object
.
curl --request POST \
--url https://api.shipbob.com/2025-07/transactions:query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from_date": "2019-08-24",
"invoice_ids": [
"12345"
],
"invoiced_status": true,
"page_size": 10,
"reference_ids": [
"11553288",
"43-12000928-Pallet00"
],
"reference_types": [
"FC"
],
"sort_order": "Ascending",
"to_date": "2019-08-24",
"transaction_fees": [
"Kitting Fee",
"Warehousing Fee"
],
"transaction_types": [
"Charge"
]
}'
{
"first": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjre",
"items": [
{
"additional_details": {
"comment": "TestInvoice"
},
"amount": 0.09,
"charge_date": "2025-01-01",
"currency_code": "USD",
"fulfillment_center": "Altona VIC",
"invoice_date": "2025-01-01",
"invoice_id": 12345,
"invoice_type": "Shipping",
"invoiced_status": true,
"reference_id": "12345",
"reference_type": "Shipment",
"taxes": [
{
"tax_amount": 0.01,
"tax_rate": 10,
"tax_type": "GST"
}
],
"transaction_fee": "Shipping",
"transaction_type": "Charge"
}
],
"last": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjqt",
"next": "f8cUk/xjhyEYp2L8oHqxL2hFiGz3qjqt",
"prev": "f8cUk/xJkbeYp2L8oHqxL2hFiGz3qjcc"
}