Tic.Console 1.0.0

dotnet tool install --global Tic.Console --version 1.0.0
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local Tic.Console --version 1.0.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Tic.Console&version=1.0.0
                    
nuke :add-package Tic.Console --version 1.0.0
                    

Tic.Console

CLI for the TIC search and datasets API — company, person, vehicle, and bankruptcy lookup. YAML-first output optimized for LLM agent consumption.

Installation

dotnet tool install -g Tic.Console

Authentication

Set your API key via environment variable:

export TIC_API_KEY=your-api-key

Or pass it per command:

tic company get 556792-6687 --api-key your-api-key

Commands

Company

# Look up by registration number
tic company get 556792-6687

# Look up by internal TIC ID
tic company get-by-id 3325421

# Search by name, phone, email, address, etc.
tic company search "Bosma Interactive"
tic company search "+46767742725" --query-by "phoneNumbers.e164PhoneNumber"
tic company search "niels@example.com" --query-by "emailAddresses.emailAddress"
tic company search "Fabriksgatan" --query-by "mostRecentRegisteredAddress.streetAddress"
tic company search "*" --query-by "registrationNumber" --filter-by "hasIntelligence:true" --per-page 5

# Detailed lookups by company ID
tic company parties 3325421
tic company beneficial-owners 3325421
tic company intelligence 3325421
tic company graph 3325421
tic company tree 3325421
tic company debtor-summary 3325421
tic company vehicles 3325421
tic company properties 3325421

Person

# Search by personal identity number
tic person search 198207174171

# Get person details
tic person get 1625054

# Get all companies where a person has a role
tic person companies 1625054

Vehicle

# Search by licence plate, VIN, manufacturer, etc.
tic vehicle search "ABC123"
tic vehicle search "YV1XZ" --query-by vin

Bankruptcy

# Search bankruptcy records
tic bankruptcy search "5566778899"
tic bankruptcy search "*" --filter-by "initiatedDate:>=1711929600" --sort-by "initiatedDate:desc"

Output formats

# YAML (default)
tic company get 556792-6687

# JSON
tic company get 556792-6687 --format json

# Table
tic company get 556792-6687 --format table

Verbose mode

tic company get 556792-6687 --verbose

Exit codes

Code Meaning
0 Success
1 User/input error
2 API/network error

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
1.0.0 90 4/30/2026