Your first result
Go from a fresh terminal to a classified product and a previewed buyer search in about two minutes.
This is the whole chain, end to end, in a fresh terminal. It assumes you have installed and signed in.
1. Confirm auth and grounding
eximagent whoami
eximagent profile get
2. Settle the HS code
Nearly every downstream command is sharper with a code than with a product name. If you do not already know yours, disambiguate it:
eximagent hscode search --query "roasted arabica coffee beans"
Pick the code that matches what you actually ship. Classification is a judgement call, and the CLI returns candidates rather than pretending there is one answer.
3. Check a duty
eximagent tariff --exporter VN --importer DE --product 090111
This is a free structured lookup — nothing is billed and nothing is sent.
4. Preview a buyer search
Buyer discovery spends credits, so preview it first:
eximagent --dry-run search run --product "roasted coffee" --location DE --hsCode 090111
The preview shows the plan and the expected cost. Nothing has run yet.
5. Run it
eximagent search run --product "roasted coffee" --location DE --hsCode 090111 --confirmed
The kickoff response carries a runId. Searches are asynchronous, so attach to
the stream and wait for the terminal event before reading any rows:
eximagent stream --run-id <runId>
6. Look at what came back
eximagent collection list
eximagent collection get --name <name>
From here the path forks: shortlist the standouts and enrich them, or step back and read the market signals before spending anything more.
Where to go next
- How EximAgent works — why the order above is the order
- Find buyers — the same flow, in depth
- Command reference — the full surface