Quickstart Checklist
A short, opinionated path from zero to a production-ready integration. Tick items as you go — your progress is saved in this browser.
Your quickstart progress
0 of 9 complete
- Create your developer account
Sign up to get sandbox and live API keys for your business.
- Save your test key in docs
Open the gear icon in the docs sidebar and paste your zx_test_ key. Every code sample on every page will use it.
- Get your first delivery quote
POST /v1/quotes with a pickup and dropoff address.
- Create a sandbox delivery
POST /v1/deliveries with the quote_id and contact details.
- Subscribe to tracking updates
Poll GET /v1/deliveries/{id}/tracking or register a webhook.
- Register at least one webhook
Webhooks are required for production. Verify signatures using the secret returned on creation.
- Verify webhook signatures
Reject any webhook whose signature does not match the expected HMAC.
- Read the rate-limit policy
Understand the burst and sustained limits before scaling load.
- Swap your test key for a live key
When sandbox is green, replace zx_test_ with zx_live_ in your environment variables.
Need help?