Quick start / about 5 minutes
Integrate an API in five minutes.
Install the Pontx Hub CLI, find an endpoint, inspect its Schema, preview the request, and move to a type-safe SDK.
01Discover
pontx-hub search02Inspect
pontx-hub show03Preview
pontx-hub preview04Integrate
pontx-hub sdk01
Install the universal CLI
Requires Node.js 20 or newer.
pnpm add --global @pontx/hub-cli
pontx-hub --versionWant to look around first? The website supports the same discovery and preview flow without an install.
02
Search and inspect
Search by capability, input, output, or data structure in natural language.
- 1Search an intent
Add --json for stable, programmable results with match provenance.
- 2Copy the stable resource ID
API, Endpoint, and Schema IDs from search can all be passed to show.
pontx-hub search "把欧元换算成美元的接口" --locale zh --json
pontx-hub show endpoint:frankfurter/get-latest-rates
pontx-hub show schema:frankfurter/ExchangeRateResponse03
Preview, then call
preview resolves the final URL, query, redacted headers, and body without sending anything to the provider.
pontx-hub frankfurter preview 'Exchange Rates' getLatestRates --base USD
# Only run after the preview matches your intent.
pontx-hub frankfurter call 'Exchange Rates' getLatestRates --base USD04
Move into an SDK integration
After verifying the Endpoint, inspect its exact operator-published package and version.
pontx-hub sdk frankfurter
pnpm add @pontx/frankfurter