DOCSPontx Hub
Public docsv1
On this page5-minute quick start

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.

01Discoverpontx-hub search
02Inspectpontx-hub show
03Previewpontx-hub preview
04Integratepontx-hub sdk
01

Install the universal CLI

Requires Node.js 20 or newer.

Terminal
pnpm add --global @pontx/hub-cli
pontx-hub --version

Want 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.

  1. 1
    Search an intent

    Add --json for stable, programmable results with match provenance.

  2. 2
    Copy the stable resource ID

    API, Endpoint, and Schema IDs from search can all be passed to show.

Discover an exchange-rate endpoint
pontx-hub search "把欧元换算成美元的接口" --locale zh --json
pontx-hub show endpoint:frankfurter/get-latest-rates
pontx-hub show schema:frankfurter/ExchangeRateResponse
03

Preview, then call

preview resolves the final URL, query, redacted headers, and body without sending anything to the provider.

Safe request flow
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 USD
04

Move into an SDK integration

After verifying the Endpoint, inspect its exact operator-published package and version.

Inspect and install the SDK
pontx-hub sdk frankfurter
pnpm add @pontx/frankfurter

Continue with the SDK guide for package naming, client shapes, and dedicated API CLIs.

Open the SDK guide