Skip to main content
GET
/
transactions
List transactions
curl --request GET \
  --url https://base_url/api/v1/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "transactions": [
      {
        "id": "9753a999-6d64-4a4f-ad9b-345890d32722",
        "corporation_id": "74df772f-9260-42cf-9c20-3b613b60fecd",
        "transacted_at": "2025-11-30",
        "created_at": 1765177896736899,
        "reporting_date_override": "2025-11-30",
        "invoice_currency": "USD",
        "subtotal": 46.15,
        "discount": 0,
        "shipping_and_handling": 0,
        "total": 48.09,
        "tax_collected": 1.94,
        "invoice_status": "LOCKED",
        "invoice_type": "SALE",
        "invoice_number": "c85100ab-7c61-4aa6-b207-c4dae0d40d13",
        "creation_method": "TRANSACTIONS_API_BULK",
        "metadata": {},
        "customer_details": {
          "shipping_address": {
            "postal_code": "90401",
            "state": "CA",
            "country": "US",
            "address_line_1": "1776 Main St",
            "address_line_2": "Apt. #123",
            "address_line_3": "<string>",
            "city": "Santa Monica"
          },
          "customer_id": "<string>"
        },
        "line_items": {
          "items": [
            {
              "id": "aec197ca-a1fa-4669-8496-f52c82da5d3c",
              "amount": 46.15,
              "quantity": 1,
              "shipping": 0,
              "handling": 0,
              "discount": 0,
              "price_per_unit": 46.15,
              "tax_collected": 1.94,
              "tax_code": "<string>",
              "product_id": "<string>",
              "exemption_certificate_id": "00000000-0000-0000-0000-000000000000"
            }
          ]
        }
      }
    ],
    "cursor": "<string>"
  },
  "message": "Successfully fetched transactions."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

corporation_id
string
required

The unique identifier of the corporation for which to retrieve data.

cursor
string

Cursor for pagination

limit
integer
default:10

Number of items to return per page

Required range: 1 <= x <= 100

Response

List of transactions

data
object
message
string
Example:

"Successfully fetched transactions."