Introduction
Welcome to the NowPost API! Our API empowers you to integrate seamless delivery solutions into your applications, connecting you to a vast network of agents for fast, reliable, and affordable package drop-off and pick-up services.
NowPost simplifies logistics by bridging businesses and individuals with local agents, ensuring efficient deliveries every step of the way. NowPost is your trusted partner for hassle-free delivery.
We provide language bindings in Shell, Ruby, Python, and JavaScript to make integration straightforward. You can explore code examples in the dark area to the right and switch between programming languages using the tabs in the top right corner.
Authentication
Generate Token
To generate token, use this code:
require 'net/http'
require 'json'
url = URI("https://api.v1.test.nowpost.com/auth/token-generate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request.body = {
email: "user@example.com",
password: "your_password",
secret_key: "your_secret_key"
}.to_json
response = http.request(request)
puts response.body
import requests
url = "https://api.v1.test.nowpost.com/auth/token-generate"
payload = {
"email": "user@example.com",
"password": "your_password",
"secret_key": "your_secret_key"
}
headers = {
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
# With shell, you can just pass the correct header with each request
curl -X POST "https://api.v1.test.nowpost.com/auth/token-generate" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "your_password",
"secret_key": "your_secret_key"
}'
const axios = require("axios");
const url = "https://api.v1.test.nowpost.com/auth/token-generate";
const payload = {
email: "user@example.com",
password: "your_password",
secret_key: "your_secret_key"
};
axios
.post(url, payload, {
headers: {
"Content-Type": "application/json"
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(
"Error generating token:",
error.response?.data || error.message
);
});
Make sure to replace
password
andsecret
with yours. The above request returns JSON structured like this:
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token": "dGVzdC1yZWZyZXNoLXRva2Vu...",
"token_type": "Bearer",
"expires_in": 3600
}
Endpoint
POST /auth/token-generate
This endpoint allows users to generate a token for authenticating API requests. A valid email, password, and secret key are required.
Request
URL
https://api.v1.test.nowpost.com/auth/token-generate
Headers
Key | Value |
---|---|
Content-Type |
application/json |
Body Parameters
Parameter | Type | Required | Description |
---|---|---|---|
email |
string |
Yes | The email associated with your account. |
password |
string |
Yes | Your account password. |
secret_key |
string |
Yes | Your personal secret key, available in the NowPost Developer Portal. |
Rates
The Rates API provides endpoints to calculate pricing for deliveries based on package size, weight, and destination. You can use this information to display pricing estimates in your application.
Get Rate Estimate
curl -X GET "https://api.v1.test.nowpost.com/rates/estimate?origin=10001&destination=90001&weight=2" \
-H "Authorization: Bearer your_access_token_here"
import requests
url = "https://api.v1.test.nowpost.com/rates/estimate"
params = {
"origin": "10001",
"destination": "90001",
"weight": 2
}
headers = {
"Authorization": "Bearer your_access_token_here"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const axios = require("axios");
const url = "https://api.v1.test.nowpost.com/rates/estimate";
const params = {
origin: "10001",
destination: "90001",
weight: 2
};
axios
.get(url, {
headers: {
Authorization: "Bearer your_access_token_here"
},
params
})
.then(response => console.log(response.data))
.catch(error =>
console.error("Error:", error.response?.data || error.message)
);
require 'net/http'
require 'json'
uri = URI("https://api.v1.test.nowpost.com/rates/estimate?origin=10001&destination=90001&weight=2")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request["Authorization"] = "Bearer your_access_token_here"
response = http.request(request)
puts response.body
Endpoint
GET /rates/estimate
Retrieve a delivery rate estimate based on package details and destination.
Request
URL
https://api.v1.test.nowpost.com/rates/estimate
Headers
Key | Value |
---|---|
Content-Type |
application/json |
Authorization |
Bearer your_access_token_here |
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
origin |
string |
Yes | The pickup location (e.g., ZIP code). |
destination |
string |
Yes | The delivery location (e.g., ZIP code). |
weight |
number |
Yes | The weight of the package in kilograms. |
dimensions |
string |
No | The package dimensions in LxWxH format (e.g., 10x5x5 ). |
Errors
The Kittn API uses the following error codes:
Error Code | Meaning |
---|---|
400 | Bad Request -- Your request is invalid. |
401 | Unauthorized -- Your API key is wrong. |
403 | Forbidden -- The kitten requested is hidden for administrators only. |
404 | Not Found -- The specified kitten could not be found. |
405 | Method Not Allowed -- You tried to access a kitten with an invalid method. |
406 | Not Acceptable -- You requested a format that isn't json. |
410 | Gone -- The kitten requested has been removed from our servers. |
418 | I'm a teapot. |
429 | Too Many Requests -- You're requesting too many kittens! Slow down! |
500 | Internal Server Error -- We had a problem with our server. Try again later. |
503 | Service Unavailable -- We're temporarily offline for maintenance. Please try again later. |