Back to articles
startup July 28, 2026 9 min read

Introducing Hawker: A Trust‑First Hyperlocal Marketplace for Nigeria

After years of battling scams and unreliable trades on WhatsApp and Facebook, we built Hawker a secure, escrow‑driven marketplace that puts trust back in local commerce.

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.

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.

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.

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.

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.

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.

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.

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:

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.

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.

Need something like this built?

I work on full-stack web apps — backend systems, APIs, and the front-ends that sit on top. If this post was useful and you've got a project that needs it, I'd like to hear about it.

Want future posts like this?

No mailing list yet — for now, email me and I'll let you know when something new goes up.

Email me