Tradeics CLI
Give Feedback

Quickstart

Updated on July 14, 2026

Get from zero to a verified Tradeics call in a few minutes once the CLI binary is available.

1. Install & check

tradeics version
tradeics doctor

2. Authenticate

export TRADEICS_API_KEY="..."   # or: tradeics login
tradeics auth status

3. Call REST V2

# Human-readable table
tradeics api get /master-management/v2.0/vendor-sub-category

# Raw JSON (scripting)
tradeics api get /master-management/v2.0/vendor-sub-category --format json

Equivalent to the First request curl sample — the CLI adds profiles, retries, and consistent exit codes.

4. List LLM models

export TRADEICS_LLM_API_KEY="sk-..."
tradeics llm models list

5. (Optional) Forward webhooks to your receiver

When webhook forwarding ships:

tradeics listen --forward-to https://hooks.example.com/tradeics/webhooks

Point --forward-to at your receiver’s public HTTPS URL (or a secure tunnel URL you control). Design receivers with Webhooks.

6. Ask an agent with docs context

# Copy an agent-ready prompt that points at llms.txt for this machine's context
tradeics docs agent-prompt --page getting-started/first-request | pbcopy

Or open /llms.txt / /llms-full.txt from the developer hub.

Next