Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
lofty-cli supports four output formats so you can pipe results into any downstream tool. The default is human-readable text; everything else is selected with --format (or the --json shortcut).
text (default)
Designed for terminals. Tables are aligned and colorized; long fields are truncated.
--no-color to drop ANSI sequences and --no-header to omit the column row — useful when piping to awk or cut:
json
Stable, machine-readable, and the only format that preserves nested fields and full precision for 64-bit IDs.
jq for ad-hoc filtering:
csv
Round-trips cleanly into spreadsheets and csvkit / pandas.
--no-header to drop the header row when appending to an existing file.
yaml
Useful for human review of nested API responses.
Choosing fields
Mostlist and get commands accept --return-fields to reduce payload size and speed up downstream parsing:
Exit codes
| Code | Meaning |
|---|---|
0 | Success — output is valid for the requested format |
1 | Generic CLI error (validation, network, parsing) |
2 | Authentication failure — see Authentication |
>2 | API error — the response body is printed in the chosen format |