Integrations & APIs: inventory data in the systems you already work in.
LOGINventory reads and writes via open integrations: through the REST API, PowerShell script, or CSV import. Ready-made connections for MDM systems, ITSM, and CMDB are included. You can add your own systems via Custom Scan Scripts.
GET /api/v1/assets?type=Server Authorization: Bearer •••••••• 200 OK [ { "hostname": "SRV-FILE-01", "os": "Windows Server 2022", "cpu": "Xeon E-2336", "ram_gb": 64, "last_scan": "2026-04-29T09:47:12Z", "software_count": 42 }, ... ]
The directions inventory data flows.
Out. As a data source
CMDB, ITSM, dashboards.
LOGINventory delivers up-to-date inventory data to ticketing systems, configuration databases, and reporting stacks: JSON, CSV, or a PowerShell pipeline.
In. As a data sink
Even what the scanner can’t reach.
HR data, procurement properties, MDM inventories, your own special sources: synchronizable via REST or read in through Custom Scan Scripts.
Automated
PowerShell triggers, REST delivers.
Write scheduled reports to shares, report changes into the ticket system via script: no manual steps in between.
This is how inventory data flows into your systems.
REST for modern stacks, PowerShell for Windows automation, CSV for migrations and periodic synchronization. All paths access the same data foundation.
JSON · API key
HTTP based, read and write access. CMDB sync, ITSM connection, external dashboards with live data.
COM object · pipeline
Navigate queries like a file system (Dir, CD),
CSV export, conditional triggers.
Structured data access via protocol
/api/mcp/describe and
/api/mcp/execute:
machine-readable metadata and queries without a prior export.
Import · export
Scheduled or action triggered. Good for migrations, periodic syncs from legacy systems, or where no API endpoint exists.
Direct connections. No code of your own.
- Microsoft Intune
- baramundi
- APPTEC360
- Sophos Mobile
- Kyberna ky2help
- iET Solutions iET ITSM
- helpLine
- i-net HelpDesk
- i-doit
- Jira Service Desk
- OTRS
- PRTG
OpenCelium is a separate open-source platform with ready-made bidirectional connectors for CMDB (i-doit), ticketing (Jira Service Desk, OTRS), and monitoring (PRTG). It requires its own instance and configuration. No custom coding is required.
What the standard scanner can’t reach. Write it yourself.
Proprietary APIs, specialized hardware, niche cloud services, warranty data: your own
PowerShell scripts run via the Remote Scanner and write directly
into the LOGINventory data format (.inv).
Use cases from the documentation: thin-client management systems, additional MDMs, cloud license data, warranty lookups, any API-based system.
github.com/loginventory/custom-scan-scripts →# Query the warranty API $serial = "AB12CD34" $result = Invoke-RestMethod ` -Uri "https://api.vendor.com/warranty" ` -Body @{ serial = $serial } Write-InvProperty ` -Asset $asset ` -Name "Warranty until" ` -Value $result.expiry
The integrations are fully active in the trial license.
You generate an API key, call the first REST endpoint, and see which fields the API returns, before you invest any integration effort.