1. Pickup Addresses
  • Authentication API
    • Generate API Token
      POST
  • Create Orders
    • Create Order
      POST
  • Cancel Orders
    • Cancel Order
      PUT
  • Shipping Label
    • Download Shipping Label
      POST
    • Shipping Label Configurations
      GET
    • Update Shipping Label Configurations
      PUT
  • Shipment Tracking
    • Tracking
      GET
  • Couriers
    • Courier Partners
      GET
  • NDR
    • Reattempt NDR
      PUT
  • Pickup Addresses
    • Pickup Hub ids
      GET
    • Create Pickup Hub Id
      POST
    • Pickup Hub Id
      DELETE
  • Shipping Rates
    • Get Shipping Rate (Retail)
      GET
  1. Pickup Addresses

Pickup Hub ids

GET
https://api.sharkship.in/v1/b2c/address/pickupAddress
Fetches all pickup hubs associated with your Sharkship account.
Endpoint: GET /v1/b2c/address/pickupAddress
Headers:
Authorization: Bearer <token>
Response (200): Returns an array of pickup hub objects.
FieldTypeDescription
pickup_hub_idintegerUnique identifier for the pickup hub
hub_addressstringFull street address of the pickup hub
hub_landmarkstringNearby landmark for the pickup hub (may be empty)
hub_pinintegerPIN/postal code of the pickup hub location
hub_citystringCity where the pickup hub is located
hub_statestringState where the pickup hub is located
hub_contact_numberstringContact phone number for the pickup hub
hub_namestringName of the pickup hub
is_rto_samestringWhether the RTO hub is the same as the pickup hub. "Y" if same, "N" if different
rto_hub_addressstringFull street address of the RTO hub
rto_hub_landmarkstringNearby landmark for the RTO hub (may be empty)
rto_hub_pinintegerPIN/postal code of the RTO hub location
rto_hub_citystringCity where the RTO hub is located
rto_hub_statestringState where the RTO hub is located
rto_hub_contact_numberstringContact phone number for the RTO hub
rto_hub_namestringName of the RTO hub

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.sharkship.in/v1/b2c/address/pickupAddress' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "pickup_hub_id": 1,
        "hub_address": "803, 8th Floor, Tower 5, Business Park, 12th Avenue, Sector-27C",
        "hub_landmark": "",
        "hub_pin": 110001,
        "hub_city": "New Delhi",
        "hub_state": "Delhi",
        "hub_contact_number": "9876543210",
        "hub_name": "Acme Logistics Hub",
        "is_rto_same": "N",
        "rto_hub_address": "Unit 12, Industrial Area, Sector 23A",
        "rto_hub_landmark": "",
        "rto_hub_pin": 110002,
        "rto_hub_city": "New Delhi",
        "rto_hub_state": "Delhi",
        "rto_hub_contact_number": "9876540001",
        "rto_hub_name": "Acme RTO Hub"
    },
    {
        "pickup_hub_id": 2,
        "hub_address": "3rd Floor, Commerce Square, 448-A, Industrial Area Phase V, Sector 19",
        "hub_landmark": "Near City Post Office",
        "hub_pin": 110003,
        "hub_city": "New Delhi",
        "hub_state": "Delhi",
        "hub_contact_number": "9876541111",
        "hub_name": "Acme Fulfillment Center",
        "is_rto_same": "Y",
        "rto_hub_address": "3rd Floor, Commerce Square, 448-A, Industrial Area Phase V, Sector 19",
        "rto_hub_landmark": "Near City Post Office",
        "rto_hub_pin": 110003,
        "rto_hub_city": "New Delhi",
        "rto_hub_state": "Delhi",
        "rto_hub_contact_number": "9876541111",
        "rto_hub_name": "Acme Fulfillment Center"
    }
]
Modified at 2026-06-16 10:11:15
Previous
Pickup Addresses
Next
Create Pickup Hub Id
Built with