Transform your workflow with our bulletproof REST API. Instantly sync orders, tracking, and inventory. Zero manual work. Complete automation. Ship your integration in hours, not weeks.
Our battle-tested REST API gives you complete control. Build exactly what you need with zero limitations.
Create, update, and cancel orders instantly. Sync from any platform. Process thousands of orders with lightning-fast batch operations.
Get instant shipment status updates. Webhook notifications push changes to you. Build branded tracking experiences your customers love.
Keep inventory synced across all platforms automatically. Get instant low-stock alerts. Never oversell again with bulletproof stock management.
Pull performance data on demand. Build custom dashboards that matter. Export detailed reports for accounting with one API call.
Track Cash on Delivery payments effortlessly. Get instant payout reports. Automated reconciliation saves hours of manual work every week.
Receive real-time updates the moment events happen. Order status changes, delivery confirmations, inventory alerts - all pushed to you instantly.
Clean, predictable endpoints for every operation. Crystal-clear documentation. Integrate in minutes, not days.
Create a new shipment order with receiver details, products, and shipping preferences.
Retrieve full order information including status, tracking, and delivery history.
Get paginated list of orders with filters for status, date range, and recipient.
Cancel a pending order before it enters fulfillment.
Get current shipment status and full tracking history with timestamps.
Track multiple shipments in a single API call. Up to 100 tracking IDs per request.
Get your product catalog with current inventory levels and pricing.
Add new products to your catalog with SKU, title, weight, and images.
Check current inventory level for a specific SKU in our warehouse.
Adjust inventory levels. Record incoming stock or corrections.
Get delivery rates, average delivery times, and return rates by region.
COD collections, payouts, shipping costs, and revenue summaries.
Dead-simple authentication. Clean JSON responses. Copy-paste examples in your favorite language.
# Create a new order
curl -X POST https://eu.trackify.net/api/orders/create \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"receiver_name": "John Doe",
"receiver_address": "Main Street 123",
"receiver_city": "Berlin",
"receiver_country": "DE",
"receiver_phone": "+49123456789",
"receiver_zip": "10115",
"products": [
{
"product_id": 12345,
"quantity": 2,
"price": 29.99
}
],
"cod_amount": 59.98,
"reference": "ORDER-001"
}'
# Response
{
"success": true,
"shipment_id": 78901,
"tracking_id": "TRK-2024-00123",
"status": "pending"
}
<?php
// Create a new order with PHP
$apiToken = 'YOUR_API_TOKEN';
$endpoint = 'https://eu.trackify.net/api/orders/create';
$orderData = [
'receiver_name' => 'John Doe',
'receiver_address' => 'Main Street 123',
'receiver_city' => 'Berlin',
'receiver_country' => 'DE',
'receiver_phone' => '+49123456789',
'receiver_zip' => '10115',
'products' => [
[
'product_id' => 12345,
'quantity' => 2,
'price' => 29.99
]
],
'cod_amount' => 59.98,
'reference' => 'ORDER-001'
];
$ch = curl_init($endpoint);
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $apiToken,
'Content-Type: application/json'
],
CURLOPT_POSTFIELDS => json_encode($orderData)
]);
$response = curl_exec($ch);
$result = json_decode($response, true);
if ($result['success']) {
echo "Order created! Tracking: " . $result['tracking_id'];
}
import requests
import json
# Create a new order with Python
api_token = 'YOUR_API_TOKEN'
endpoint = 'https://eu.trackify.net/api/orders/create'
order_data = {
'receiver_name': 'John Doe',
'receiver_address': 'Main Street 123',
'receiver_city': 'Berlin',
'receiver_country': 'DE',
'receiver_phone': '+49123456789',
'receiver_zip': '10115',
'products': [
{
'product_id': 12345,
'quantity': 2,
'price': 29.99
}
],
'cod_amount': 59.98,
'reference': 'ORDER-001'
}
headers = {
'Authorization': f'Bearer {api_token}',
'Content-Type': 'application/json'
}
response = requests.post(endpoint, json=order_data, headers=headers)
result = response.json()
if result['success']:
print(f"Order created! Tracking: {result['tracking_id']}")
// Create a new order with JavaScript (Node.js / Browser)
const apiToken = 'YOUR_API_TOKEN';
const endpoint = 'https://eu.trackify.net/api/orders/create';
const orderData = {
receiver_name: 'John Doe',
receiver_address: 'Main Street 123',
receiver_city: 'Berlin',
receiver_country: 'DE',
receiver_phone: '+49123456789',
receiver_zip: '10115',
products: [
{
product_id: 12345,
quantity: 2,
price: 29.99
}
],
cod_amount: 59.98,
reference: 'ORDER-001'
};
async function createOrder() {
const response = await fetch(endpoint, {
method: 'POST',
headers: {
'Authorization': `Bearer ${apiToken}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(orderData)
});
const result = await response.json();
if (result.success) {
console.log(`Order created! Tracking: ${result.tracking_id}`);
}
}
createOrder();
Crystal-clear documentation with examples, error handling, rate limits, and battle-tested best practices.
Full endpoint documentation with request/response examples, parameters, and error codes.
API key generation, token management, OAuth 2.0 support, and security best practices.
Event types, payload structures, verification, retry logic, and example handlers.
Request limits per endpoint, burst handling, and optimization strategies.
Error codes, debugging guide, and common issues with proven solutions.
Official libraries for PHP, Python, JavaScript, and community integrations.
Whether you are building a custom store, managing multiple platforms, or automating workflows - our API delivers.
Build a fully custom storefront with your tech stack. Zero plugin limitations. Total freedom.
Sell everywhere with centralized fulfillment. One API powers all your channels.
Automate your entire fulfillment process. Zero manual work. Scale without limits.
Clean API design, comprehensive documentation, and every tool you need to integrate fast.
Predictable endpoints and standard HTTP methods
HTTPS only, API key auth, rate limiting
Average response time under 200ms
Enterprise-grade reliability
Test environment for development
Dedicated technical assistance
Backward compatible updates
Instant event notifications
Create your account now. API keys generated instantly. Start building in minutes.