Giter Site home page Giter Site logo

logistics's Introduction

ShoppRe Logistics

Shipping API for Indians

Join the community on Spectrum

If you are facing any issues. please create here

PRICING API

Usage HTTP:

URL: : https://logistics.shoppre.com/api/pricing

METHOD: GET

Query Parameters: all=true&country=US&type=nondoc&weight=0.5

Usage PHP:

function getPricing(){
  // Set Logistics endpoint
  $url = 'https://logistics.shoppre.com/api/pricing?all=true&country=US&type=nondoc&weight=0.5';
  
  $ch = curl_init();

  // Set the url, number of POST vars, POST data
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_GET, true);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);                                    

  // Execute post
  $result = curl_exec($ch);
  if ($result === FALSE) {
      die('pricing get failed in curl: ' . curl_error($ch));
  } else {
	  
  }

  // Close connection
  curl_close($ch);
}

Usage in NodeJS

npm install --save request

  var request = require('request');
  var options = {
          url: "https://logistics.shoppre.com/api/pricing?all=true&country=US&type=nondoc&weight=0.5",
          json:true,
        };
   // Sending GET Request to Logistics API
   request(options, function (error, response, body) {
     if (error) { return handleError(res, err); }
     res.json({
       message: 'success',
       data: body
     });
   });     

Method: GET

URL: https://logistics.shoppre.com/api/pricing

Parameters:

All = true
Country = US (country code ISO2) 
Type = nondoc / doc
Weight = 0.5 

Optional parameters:

Length = 
Width =
Height =
Scale =  cm / in
Unit = kg / lb

Note: Price you can get upto 70kg

  • Type you can send “doc” and “nondoc” both have different rates
    • Doc -> means Documents
    • NonDoc -> Means Non Documents
  • Optional parameters is for volumetric weights

Example with out volumetric weights:

https://logistics.shoppre.com/api/pricing?all=true&country=US&type=nondoc&weight=0.5

Example with volumetric weights:

https://logistics.shoppre.com/api/pricing?all=true&country=US&type=nondoc&weight=0.5&length=0.5&width=0.5&height=0.5&scale=cm&unit=kg

logistics's People

Contributors

punihs avatar shoppre-tech avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

manjeshpv

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.