Theyutes Developers
Build commerce, the African way.
A REST API and signed webhook stream for every fashion business shipping out of Lagos, Accra, and beyond. Amounts in kobo. Phones in +234. Payloads that read like a real order on a real Saturday.
Built on real infrastructure
Real-time webhooks
HMAC-SHA256 signed, 6-step retry curve, 5-minute timestamp tolerance. Replay any delivery from the dashboard.
Stripe-pattern API
Cursor pagination, JSON in and out, idempotency keys, scoped bearer tokens. No surprises.
Built for Naira
Amounts in kobo (always integers). Phones as +234. Addresses default to Lagos and FCT. Currency NGN end-to-end.
Audit log on every mutation
Who did what, when, with what IP — every state change is immutable and queryable from the dashboard.
Five minutes to first request
Mint a token, paste the curl, get JSON.
Request
bash
curl 'https://theyutes.com/api/v1/orders' \
-H 'Authorization: Bearer tyk_••••••••••••••••••••••••••••••••'Response · 200 OK
json
{
"data": [
{
"id": "cl9j4k2l3000001jx8h2zfb1m",
"number": "TY-X9K2QF",
"status": "processing",
"totalKobo": 4500000,
"currency": "NGN",
"createdAt": "2025-11-20T14:22:31.000Z",
"customer": {
"name": "Adaeze Okonkwo",
"email": "adaeze.okonkwo12@gmail.com"
}
}
],
"pagination": {
"cursor": "c1a2b3c4",
"limit": 25,
"hasMore": false
}
}What you can build
ERP sync
Stream every order into your back office
Subscribe to order.created + order.status_changed + order.refunded. Push to QuickBooks, Sage, or your custom backend.
Read recipe
Inventory automation
Auto-restock from your supplier
Listen to inventory.low_stock and trigger a purchase order. Never sell a 'sold out' product again.
Read recipe
Catalog distribution
Mirror to Instagram Shop
Use GET /products to keep your IG Shop catalog and prices in sync with the dashboard, no manual export.
Read recipe
Ready when you are.
Sign in to your merchant dashboard to mint your first token and point a webhook at your server. Test events fire from a button.