Pontx Hub documentation
From first search to a reliable API integration.
Use one Pontx mental model across the website, universal CLI, TypeScript SDKs, and Agent Skill.
01Discover
pontx-hub search02Inspect
pontx-hub show03Preview
pontx-hub preview04Integrate
pontx-hub sdk01
Choose your interface
These are four interfaces to the same catalog—not four separate products.
01
No installWebsite
Search, read, and preview—the best place to understand an API first.
Read the guide ↗02
@pontx/hub-cliUniversal CLI
Search and call across the catalog from terminals, scripts, and agents.
Read the guide ↗03
@pontx/<api>TypeScript SDK
Turn a verified request into type-safe production code.
Read the guide ↗04
pontx-hubAgent Skill
Let agents retrieve the live catalog on demand under the same safety rules.
Read the guide ↗03
One integration path
Discover, inspect, preview, execute, then carry the verified shape into code.
pnpm add --global @pontx/hub-cli
pontx-hub search "exchange rate" --json
pontx-hub show endpoint:frankfurter/get-latest-rates
pontx-hub frankfurter preview 'Exchange Rates' getLatestRates --base USDimport currencyExchangeClient from "@pontx/frankfurter";
const result = await currencyExchangeClient.exchangeRates.getLatestRates({
base: "USD",
symbols: "JPY,CNY"
});npx skills add https://github.com/pontjs/pontx-hub --skill pontx-hub
# The agent now follows search → show → preview → call → sdk.