💻 Kestrel Developer Hub
Build on Kestrel. Integrate with your store, app, or workflow.
🛒
Shopify
Auto-generate Kestrel Send labels for orders
Live
🏷️
eBay
Same-day delivery option at checkout
Live
👕
Vinted
Instant parcel pickup for sellers
Coming Soon
🏢️
POS Systems
Direct order flow from Square, Toast
Coming Soon
💼
Corporate API
Employee travel accounts & reporting
Live
🤖
Webhooks
Real-time order status to your system
Live
🔌 Webhook Events
Receive real-time notifications when events occur in Kestrel:
POST https://your-server.com/webhooks/kestrel
{
"event": "ride.completed",
"ride_id": "abc-123",
"user_id": "user-1",
"fare_pence": 1150,
"completed_at": "2026-08-09T14:32:00Z"
}
Available events: ride.completed, eats.delivered, go.session_ended, market.delivered, send.delivered, feathers.earned
🔑 API Authentication
All API requests require a Bearer token. Get your API key from the admin dashboard.
curl -H "Authorization: Bearer kestrel-api-key-here" \
https://gonrides.top/api/v1/eats/restaurants
📦 Kestrel Send for E-commerce
Offer same-day delivery to your customers:
POST /api/v1/send/deliveries
{
"recipient_name": "Jane Smith",
"pickup_address": "Your Warehouse, EC1A 1BB",
"dropoff_address": "Customer Address, SW1A 1AA",
"tier": "dash",
"size": "small",
"webhook_url": "https://yourshop.com/webhooks/kestrel"
}
📚 SDKs & Libraries
Official client libraries:
# JavaScript / Node.js
npm install @kestrel/sdk
# Python
pip install kestrel-sdk
# Go
go get github.com/kestrel-app/sdk-go