SDKs and Postman
Use this page when you want the fastest copy-paste path after Developer quickstart. Hilt now publishes official public developer assets for the supported merchant contract:- TypeScript SDK
- Python SDK
- Postman collection
- Postman environment
- products
- hosted checkout
- payments
- memberships
- receipts
- support
- webhooks
30-second SDK proof
If you only want to prove the published SDKs install and can talk to Hilt, use one of these smallest possible reads.TypeScript
Python
- the package installs cleanly
- auth works
- the SDK returns the same products your workspace sees in Hilt
Node .env.local
Python .env
TypeScript quickstart
Install
- npm:
https://www.npmjs.com/package/@hiltpay/sdk - GitHub:
https://github.com/Hiltpay/hilt-sdk-js
Copy-paste example
- one active product in Hilt
- one reusable
product.id - one reusable
slug - one buyer-facing checkout payload you can compare against the dashboard
Python quickstart
Install
- PyPI:
https://pypi.org/project/hilt-sdk/ - GitHub:
https://github.com/Hiltpay/hilt-sdk-python
Copy-paste example
- one product created from Python
- one clean
product["id"] - one repeatable receipts query for later proof handling
Postman quickstart
Use the public developer-assets repo for the mirrored machine-readable assets:https://github.com/Hiltpay/hilt-developer-assets
postman/hilt-postman-collection.jsonpostman/hilt-postman-environment.json
Set these environment variables
The shipped environment already includes these keys:baseUrlapiKeybearerTokenmerchantWalletproductIdslugpaymentIdmembershipIdreceiptIdendpointId
Run these requests in order
Products -> Create productWebhooks -> Create webhook endpointWebhooks -> Send test eventTesting -> Create sandbox session
productIdslugendpointId- fake sandbox ids such as
fake_payment_idandfake_receipt_id
Why Postman is useful here
Postman is the fastest way to verify:- your auth surfaces are correct
- the public merchant contract matches the docs
- webhook endpoint management works with a bearer token
- sandbox responses match the object shapes your application expects
OpenAPI and fallback assets
The live Hilt contract surfaces are:- OpenAPI:
https://api.hilt.so/v1/openapi.json - Swagger UI:
https://api.hilt.so/v1/docs - Redoc:
https://api.hilt.so/v1/redoc
https://www.hilt.so/downloads/hilt-postman-collection-latest.jsonhttps://www.hilt.so/downloads/hilt-postman-environment-latest.json
https://www.hilt.so/downloads/hilt-sdk-latest.tgzhttps://www.hilt.so/downloads/hilt_sdk-1.0.0-py3-none-any.whlhttps://www.hilt.so/downloads/hilt-sdk-1.0.0.tar.gz
Auth surfaces
For most merchant requests in the SDKs and Postman collection, use:What to do after the SDK quickstart
- run a signed test webhook event
- create one sandbox session
- finish with one tiny live payment
- verify payment, membership, receipt, and delivery state afterwards

