Skip to content

Quickstart: Connect your first API tool

Goal: Assistant fetches live data from your API (e.g. order status).

  • Starter plan or above (API Request tools)
  • An HTTP API you can call with API key or Bearer token
  • Assistant already created
  1. Go to CredentialsCreate.
  2. Choose auth type (Bearer token or API key).
  3. Paste your secret — it is stored encrypted and never shown in chat.
  1. Go to ToolsCreateAPI Request.
  2. Name: get_order_status (snake_case — used by AI).
  3. Description: Look up shipping status for a customer order. Use when the visitor provides an order number.
  4. URL: https://api.yourstore.com/orders/{order_id}
  5. Method: GET
  6. Path parameter: order_id (string, required)
  7. Attach credential.
  8. Save and Test with a sample order ID.
  1. Open assistant → Tools.
  2. Enable tools and select get_order_status.
  3. Save.

Ask: “Where is order #12345?” — assistant should call the tool and return live data.