The journey that led to Hawker started the same way many founders in Ilorin do with a phone buzzing nonstop and a promise that never quite delivered. I was trying to replace a broken kitchen sink. I posted a photo in a WhatsApp group, got three enthusiastic replies, and paid a “deposit” to a stranger who vanished after the first day. The same pattern repeated for a broken phone screen, a second‑hand sofa, and even a small business inventory purchase. Each time, the friction was the same: no guarantee, no verification, no recourse.
The Friction of Informal Trade
Nigeria’s informal economy is vibrant, but it’s also riddled with blind spots that make buying and selling a gamble. The three channels that dominate today are WhatsApp, Facebook Marketplace, and word‑of‑mouth referrals were never designed for commerce. They lack the safeguards that modern buyers and sellers expect.
- No identity verification – Anyone can create a profile with a photo taken from the internet. Trust is built on reputation, but reputation is invisible on a platform that doesn’t surface it.
- No payment protection – Payments are made via cash, bank transfers, or mobile money. Once the money leaves your account, you have little leverage if the seller disappears.
- No dispute resolution – If something goes wrong, you’re left negotiating with a stranger over a chat thread that can be deleted at any moment.
These gaps have real consequences. A 2023 survey by the Nigerian Communications Commission estimated that over 30 % of small‑scale online transactions end in some form of dispute. The cost isn’t just monetary; it erodes confidence in digital commerce and pushes people back to cash‑only, face‑to‑face deals that are slower and often more expensive.
WhatsApp: The Wild West of Commerce
WhatsApp feels like a digital bazaar. Groups of 200‑plus members, endless forwarded messages, and a flood of product photos. It’s fast, it’s familiar, and it’s free – but the lack of structure is a recipe for disaster.
- Fake alerts – Scammers masquerade as “official” delivery services, sending you a link that looks like a bank portal. One click, and your credentials are harvested.
- Price manipulation – Sellers can edit a product price in the chat after you’ve agreed, claiming a “mistake”. The informal nature of the conversation makes it hard to prove the original offer.
- No escrow – You either pay upfront or trust a stranger’s word. The moment you send money, the risk transfers entirely to you.
I still remember the night I received a message that read, “Your order is ready for pickup. Send ₦15,000 to this number to confirm.” The number was a new contact, and the “order” was a set of kitchen tiles I never ordered. I paid, and the tiles never arrived. The chat was deleted the next day.
Facebook Marketplace: Noise Over Signal
Facebook Marketplace promised a more organized approach. Listings have photos, descriptions, and a location tag. Yet the platform inherits the same trust deficit from its social roots.
- Duplicate listings – The same item appears dozens of times, each with a slightly different price. Buyers waste hours scrolling, trying to verify which seller is legitimate.
- Scam bots – Automated accounts flood the feed with “brand new” phones at 70 % off. The bot replies instantly, demanding a payment via a “quick transfer” link.
- Unreliable artisans – Many sellers claim to be certified electricians, plumbers, or carpenters. In reality, they have no formal training, and there’s no way to check their credentials.
A friend of mine posted a request for a “certified electrician” to rewire his home. Within minutes, he got three offers. He chose the lowest price, paid the full amount via bank transfer, and the electrician showed up with a broken multimeter and left the job half‑done. The only proof he had was a screenshot of the chat.
The Human Cost of Unverified Artisans
Beyond the monetary loss, there’s a deeper, more insidious problem: the erosion of community trust. In neighborhoods where people rely on each other for services, a single bad experience can tarnish an entire trade.
- Safety risks – An unqualified plumber can cause water damage that leads to mold, affecting health and property value.
- Opportunity loss – Skilled artisans who operate ethically often get drowned out by a sea of unverified sellers offering lower prices.
- Economic leakage – Money spent on fraudulent transactions never circulates back into the local economy, stunting growth.
When I talked to a group of artisans in Tanke, they told me they stopped advertising on Facebook because “the bad guys ruin it for everyone”. They needed a platform that could prove they were qualified, not just hope buyers would trust a profile picture.
Why Trust Matters
Trust is the invisible infrastructure of any marketplace. It reduces friction, lowers transaction costs, and enables scale. Companies like Stripe and Airbnb built their empires by turning trust into a product. They didn’t just create a payment gateway or a booking engine; they built systems that guarantee money moves safely, identities are verified, and disputes are resolved fairly.
In Nigeria, the trust deficit is even more pronounced. The informal channels we rely on today were never built for the scale we now demand. The solution isn’t a new chat group, it’s a purpose‑built marketplace that puts trust first.
Introducing Hawker
Hawker is that solution. It’s a hyperlocal marketplace designed for Nigerian cities, where every transaction is backed by secure escrow, every professional is verified, and every community member can participate in commerce with confidence.
- Secure escrow payments – Buyers fund the transaction into an escrow account. Funds are released only when the buyer confirms satisfactory delivery.
- Verified professionals – We run background checks, skill assessments, and collect references before a seller can list services.
- Community‑focused commerce – Users earn reputation points not just for completing jobs, but for helping other members, leaving reviews, and contributing to local forums.
- Transparent pricing – No hidden fees. Sellers list a clear price, and the platform shows a breakdown of any service charges.
Think of Hawker as the Stripe of trust for everyday Nigerian commerce, the Airbnb of local services, and the Linear of engineering rigor applied to the marketplace problem.
How Hawker Works
The user journey is intentionally simple, yet each step is fortified with safeguards.
- Step 1: Search locally – Users enter a product or service and a neighborhood. The algorithm surfaces verified sellers within a 10 km radius.
- Step 2: Verify the seller – Clicking a profile reveals a verification badge, completed skill tests, and community endorsements.
- Step 3: Initiate escrow – The buyer pays the agreed amount into Hawker’s escrow wallet. The funds are held in a segregated account, compliant with Nigerian banking regulations.
- Step 4: Delivery & confirmation – The seller delivers the product or completes the service. The buyer inspects and clicks “Confirm”.
- Step 5: Release funds – The escrow releases the money to the seller, minus a small transaction fee that funds platform operations and community initiatives.
Below is a minimal JavaScript illustration of the escrow release logic:
// escrow.js – simplified escrow release flow
async function releaseEscrow(orderId) {
const order = await db.orders.findOne({ id: orderId })
if (!order) throw new Error('Order not found')
// Ensure buyer has confirmed receipt
if (!order.buyerConfirmed) {
throw new Error('Buyer has not confirmed delivery')
}
// Transfer funds from escrow to seller account
await paymentGateway.transfer({
fromAccount: escrowAccount.id,
toAccount: order.seller.paymentAccountId,
amount: order.amount,
reference: `Hawker Order ${orderId}`
})
// Update order status
await db.orders.update({ id: orderId }, { status: 'COMPLETED' })
return true
}
The code is deliberately straightforward – the real magic lives in the surrounding compliance, fraud detection, and dispute resolution layers that we’ve built over the past year.
Building Trust at Scale
Scaling trust is a paradox: the more users you have, the harder it becomes to verify each one. Hawker tackles this with a three‑pronged approach.
- Automated verification pipelines – Using OCR on national ID cards, facial recognition, and cross‑checking with the National Identity Management System (NIMS) to confirm identity in seconds.
- Community vetting – After a transaction, both parties rate each other. High‑rating sellers gain a “Super‑Verified” badge, unlocking lower fees and priority placement.
- Continuous fraud monitoring – Machine‑learning models flag abnormal payment patterns, repeated disputes, or mismatched location data, prompting manual review.
These mechanisms echo the engineering rigor of Linear’s incident response system: clear signals, rapid triage, and transparent post‑mortems that the community can learn from.
Our Early Learnings
We launched a private beta in three Lagos neighborhoods six months ago. Here are the insights that shaped Hawker’s current product:
- Escrow builds confidence, but speed matters – Users abandoned transactions that took more than 48 hours to release funds. We introduced an auto‑release after 24 hours of buyer inactivity, with a prompt for feedback.
- Verification is a barrier, not a blocker – Some artisans struggled with uploading a clear ID photo. We added a mobile‑friendly guide and partnered with local community centers to provide assistance.
- Local payment methods win – Integrating with mobile money providers like Paga and OPay increased conversion by 35 % compared to bank transfers alone.
- Community incentives drive growth – Users who referred three friends received a “Referral Champion” badge and a small escrow credit, which spurred organic network effects.
These data points reinforce a simple truth: trust must be effortless. If the process feels cumbersome, users revert to the old, risky channels.
Join the Movement
Nigeria’s informal market is a powerhouse of entrepreneurship, but it’s shackled by mistrust. Hawker is our answer – a platform where buyers can purchase with confidence, sellers can showcase verified skills, and communities can thrive together.
We’re still in the early stages, and we need passionate early adopters to help us refine the experience. If you’re a buyer tired of scams, a craftsman looking for credible work, or simply someone who believes commerce should be safe, join our waitlist.
- Visit https://hawker.ng/waitlist
- Share the link with friends and family in your neighborhood
- Follow us on Twitter @UseHawker for updates and behind‑the‑scenes stories
Together, we can turn the chaotic streets of Ilorin, into a network of trusted exchanges. The future of local commerce is here and it’s built on trust first.