Skip to main content
GET
/
api
/
tools
Discover Tools
curl --request GET \
  --url https://pro-api.nikiwa.com/api/tools \
  --header 'Authorization: <authorization>'
Discovery is the read-only surface. It tells you which tools are public and what inputs each one expects. Use it to build a request before calling execute.

List tools

Authorization
string
required
Your developer key as a Bearer token.
curl https://pro-api.nikiwa.com/api/tools \
  -H "Authorization: Bearer nkw_live_YOUR_KEY"
Each entry is self-describing: a tool name, a description, and the input schema you pass to execute it. See the tool catalog for what is available.

OpenAPI spec

The public tools are also described as an OpenAPI document, served without authentication:
curl https://pro-api.nikiwa.com/api/tools/openapi.json
Point your code generator or API client at https://pro-api.nikiwa.com/api/tools/openapi.json to generate a typed client for the public tools automatically.

Reading valid networks at runtime

The set of supported chains can change as data-provider coverage evolves. Rather than hard-coding it, read the canonical network list from the nikiwa://chains MCP resource so your integration stays current. See Supported Networks.