ZipZapGo

API Documentation

Build powerful shipping experiences with our RESTful API. Go live in hours, not weeks.

Core Endpoints

Base URL: https://api.zipzapgo.com

POST/v1/shipments
GET/v1/shipments/:id
GET/v1/track/:awb
POST/v1/rates/calculate
GET/v1/couriers
POST/v1/labels/generate

Quick Start Example

curl -X POST https://api.zipzapgo.com/v1/shipments \
  -H "Authorization: Bearer <your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
    "origin_pincode": "110001",
    "destination_pincode": "400001",
    "weight": 0.5,
    "payment_mode": "prepaid",
    "order_id": "ORD-12345"
  }'