Developer API
Build With Trade Data
Integrate comprehensive trade intelligence into your applications with our powerful REST API
cURL
curl -X GET "https://api.globby.com/v1/shipments" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"hs_code": "8517",
"origin_country": "CN",
"date_from": "2024-01-01",
"limit": 100
}'API Features
Everything you need to integrate trade data
RESTful API
Simple and intuitive REST endpoints with JSON responses
Real-time Data
Access the latest trade data as it becomes available
Secure & Reliable
Enterprise-grade security with 99.9% uptime SLA
Well Documented
Comprehensive docs with code examples in multiple languages
Available Endpoints
Powerful endpoints for every use case
GET
/v1/shipmentsSearch shipment recordsGET
/v1/companies/{id}Get company profilesGET
/v1/hs-codes/{code}HS code informationGET
/v1/trendsMarket trend analyticsPOST
/v1/alertsCreate data alertsSample Response
Clean, structured JSON responses
200 OK
JSON Response{
"data": [
{
"shipment_id": "SHP-2024-001234",
"hs_code": "8517.12.00",
"product": "Smartphones",
"exporter": "Shenzhen Tech Co.",
"importer": "US Electronics Inc.",
"value_usd": 245000,
"quantity": 5000,
"date": "2024-01-15"
}
],
"meta": {
"total": 15420,
"page": 1,
"per_page": 100
}
}