Skip to main content
GET
/
inventory
/
aging
Inventory aging (paginated)
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/inventory/aging \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {}
  ],
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 5,
    "per_page": 10,
    "to": 10,
    "total": 50
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.joinluminous.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.

Query Parameters

as_of_date
string<date>

Valuation date (Y-m-d). Defaults to today.

per_page
integer
default:50

Number of items per page (max 1000)

Required range: x <= 1000
page
integer
default:1

Page number for pagination

Required range: x >= 1
sort_field
string

Field to sort by

sort_direction
enum<string>

Sort direction

Available options:
asc,
desc

Response

Paginated inventory aging rows

data
object[]
meta
object