Authentication
All Hello Tractor API requests require authentication. Collaborate first, then approved partners can sign in and use provisioned API keys.
API keys (recommended)
After your collaboration scope is approved, we provide API credentials for your integration and partner access. Send the key on every request:
Example with API key
curl https://api.hellotractor.com/payg/lms/contracts \
-H "Authorization: Bearer ht_live_xxxxxxxx"
Never expose API keys in client-side mobile or browser code. Call Hello Tractor APIs from your backend.
Keys are scoped to financial services, Marketplace, or webhook permissions agreed during onboarding. If a key is compromised, contact dev@hellotractor.com to rotate it.
Using the SDK
The hello-tractor-sdk accepts an API key at initialization:
import { HTSDK } from 'hello-tractor-sdk'
const sdk = HTSDK.init(process.env.HT_API_KEY)
Financial services use direct HTTP calls today; Marketplace methods are available in the SDK.
Get started
Tell us what you are building and we will align on API access and telemetry integration.