# Get unpaid deliveriescurl "https://api.chidori.africa/api/deliveries/list?isPaid=false" \ -H "X-API-Key: sk_live_xxx.yyy"# Get deliveries in transitcurl "https://api.chidori.africa/api/deliveries/list?status=IN_TRANSIT" \ -H "X-API-Key: sk_live_xxx.yyy"# Get bulk deliveries onlycurl "https://api.chidori.africa/api/deliveries/list?bulk=true" \ -H "X-API-Key: sk_live_xxx.yyy"# Get deliveries from a specific bulkcurl "https://api.chidori.africa/api/deliveries/list?bulk=1a4f1a5e-5b79-4c4a-a0d4-4c5c7b7bb1aa" \ -H "X-API-Key: sk_live_xxx.yyy"# Get deliveries from date rangecurl "https://api.chidori.africa/api/deliveries/list?createdFrom=2025-01-01T00:00:00Z&createdTo=2025-01-31T23:59:59Z" \ -H "X-API-Key: sk_live_xxx.yyy"