Command-line interface
ActivePostio from your terminal. Address, postcode, UDPRN, email, and phone validation via `npx postio …`. Pipe-friendly, jq-ready, scriptable.
Install
npx
npx -y @postio/cli address postcode SW1A1AA
global
npm i -g @postio/cli && postio --help
30-second example
export POSTIO_API_KEY=pk_…
postio connect # smoke-test the key
postio address postcode SW1A1AA # human-readable table
postio address search "10 downing" # autocomplete suggestions
postio email someone@example.com # deliverability + signals
postio phone +447700900123 # validity + carrier + type
# Stream from stdin:
cat postcodes.txt | postio address postcode -
# Pipe to jq:
postio address udprn 23747212 --json | jq '.results[0].postcode'