curl --request GET \
--url https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 123,
"item_id": 123,
"transaction_type": "<string>",
"date": "<string>",
"stage_name": "<string>",
"warehouse_name": "<string>",
"qty": 123,
"unit_cost": 123,
"total_cost": 123,
"qty_used": 123,
"qty_available": 123,
"is_stock_pull": true,
"needs_cost_review": true,
"product_sku": "<string>",
"product_name": "<string>",
"linked_type": "<string>",
"linked_id": 123,
"linked_order_number": "<string>",
"channel": "<string>",
"po_number": "<string>",
"external_po_id": 123,
"badges": [
{}
],
"_links": {
"self": "<string>",
"detail": "<string>"
}
}
],
"meta": {
"current_page": 123,
"from": 123,
"last_page": 123,
"per_page": 123,
"to": 123,
"total": 123
}
}{
"message": "<string>"
}{
"message": "<string>"
}List Core inventory transactions
List Luminous Core inventory ledger transactions (CITs) with offset pagination.
Luminous Core is a detailed inventory cost-tracking ledger. Each transaction represents a
quantity movement (receipt, shipment, adjustment, transfer, etc.) with its computed
unit_cost and total_cost. Every row includes a _links object with URLs to the
transaction detail.
This is distinct from the legacy GET /reports/transaction-cogs report, which reports
sales-item cost layers rather than Core ledger transactions.
Availability: These endpoints return 404 for tenants that do not have Luminous Core enabled.
curl --request GET \
--url https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/core/inventory-transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 123,
"item_id": 123,
"transaction_type": "<string>",
"date": "<string>",
"stage_name": "<string>",
"warehouse_name": "<string>",
"qty": 123,
"unit_cost": 123,
"total_cost": 123,
"qty_used": 123,
"qty_available": 123,
"is_stock_pull": true,
"needs_cost_review": true,
"product_sku": "<string>",
"product_name": "<string>",
"linked_type": "<string>",
"linked_id": 123,
"linked_order_number": "<string>",
"channel": "<string>",
"po_number": "<string>",
"external_po_id": 123,
"badges": [
{}
],
"_links": {
"self": "<string>",
"detail": "<string>"
}
}
],
"meta": {
"current_page": 123,
"from": 123,
"last_page": 123,
"per_page": 123,
"to": 123,
"total": 123
}
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.
Query Parameters
Page number (offset pagination).
x >= 1Rows per page (max 100).
1 <= x <= 100Only transactions on or after this date.
Only transactions on or before this date.
Comma-separated warehouse ids to include.
Comma-separated transaction types to include.
Filter by the linked document type (e.g. shipment, fulfillment_order, sales_order, adjustment, picklist).
Filter by product (RFQ) id.
Search by linked document reference / order number.
Restrict to quantity increases or decreases.
all, increase, decrease Restrict to rows with a non-zero or zero unit cost.
all, gt0, zero Sort column.
date, qty, qty_available, unit_cost, total_cost, linked_order_number Sort direction.
asc, desc