Yadego Delivery-as-a-Service
Your checkout, our riders. Get a quote, create the delivery, track it by webhook — three calls and a signature.
Quote
Fee and ETA for a pickup/dropoff pair before you commit.
Create order
Idempotent creation with your own reference. Cash or prepaid.
Track by webhook
Status events pushed to your endpoint, signed with your secret.
POST /v1/deliveries/quote
{
"pickup": { "lat": 6.5012, "lng": 3.3751 },
"dropoff": { "lat": 6.5244, "lng": 3.3792 },
"package": { "size": "small", "fragile": false }
}
200 OK
{
"quote_id": "qt_9f3k2",
"fee_kobo": 32500,
"eta_minutes": [25, 40]
}