7feastr
Get Rate & ETAAPITrack ShipmentContactBlog
LoginRegister
Documentation/Logistics API
Browse docs
K
Getting startedAuthenticationSandbox and productionQuotes and creating shipmentsTracking, status, and ETAWallet and disputesWebhooksErrors and rate limits
K
Getting startedAuthenticationSandbox and productionQuotes and creating shipmentsTracking, status, and ETAWallet and disputesWebhooksErrors and rate limits
7feastr

Nigeria's food delivery and logistics infrastructure. Order from your favourite local restaurants, or ship anywhere in the country with 7feastr Logistics.

support@7feastr.com
+234 905 606 2230
Lagos, Nigeria

Company

  • About Us
  • Blog

Services

  • Nearby Restaurants
  • Logistics
  • Track Shipment
  • API Documentation

Partners

  • Become an Agent

Support

  • FAQ
  • Contact
  • Privacy Policy
  • Terms of Service
  • Monetary Policy
  • Refund Policy

© 2026 7feastr Technologies Ltd. All rights reserved.

Getting started

Last updated July 30, 2026

The 7feastr Logistics API lets merchants create and track shipments, calculate delivery rates, and receive real-time status updates for their deliveries anywhere in Nigeria.

Base URL

https://api.7feastr.com/api/v1/logistics/v1

Every request to the shipment, rate, wallet, and dispute endpoints goes through this base URL. The same paths serve both sandbox and production traffic, so switching environments only ever requires swapping your API key, never your integration code.

What you can do with the API

  • Get an instant delivery quote for any two addresses in Nigeria, with weight-based pricing and an estimated time of arrival.
  • Create a shipment and have it dispatched to a 7feastr delivery agent.
  • Track a shipment's live status, either by tracking code (public, no authentication) or by shipment ID (authenticated).
  • Get notified in real time via webhooks as a shipment moves through its lifecycle.
  • Open and manage disputes on a shipment directly from your integration.
  • Query your prepaid wallet balance and transaction history.

Where to manage your account

Everything account-related (business verification, API keys, webhook endpoints, wallet funding, and browsing your shipments in a UI) is handled from the merchant dashboard, a separate application from this API. This documentation only covers the HTTP API your own backend integrates with.

Quick example

bash
curl -X POST https://api.7feastr.com/api/v1/logistics/v1/rates/estimate \
  -H "Authorization: Bearer SB_xxxxxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "serviceType": "consolidated",
    "pickupAddress": "12 Admiralty Way",
    "pickupCity": "Lekki",
    "pickupState": "Lagos",
    "dropoffAddress": "5 Ademola Adetokunbo Street",
    "dropoffCity": "Wuse 2",
    "dropoffState": "Abuja",
    "packageWeightKg": 2.5
  }'

Continue to Authentication to learn how to get an API key, or jump straight to Quotes and shipments for the full creation flow.

Next Authentication