Port Fees
This document describes the Logistics Explorer API web service. Our API documentation allows to calculate port fees.
Property | Type | Description | |
---|---|---|---|
key
|
string, required | API key: hexadecimal number | |
type
|
string, required |
The available values for this parameter are: fcl | lcl | air
Default value: fcl
|
|
thc
|
bool, required |
Terminal Handling Charges received from rate of AIR | FCL | LCL API
Default value: false
|
|
port_id
|
integer, required |
Port ID received from AIR | FCL | LCL API
|
|
mode
|
string, required |
The available values for this parameter are: import | export
Default value: export
|
|
company_id
|
integer |
Your company ID number
|
|
sealine
|
string |
Sea line name
Example sealine=cma cgm
Available only for type=fcl
|
Example FCL URL
https://sirius.searates.com/api/port-fees?key=YOUR_API_KEY_HERE&type=FCL&port_id=304&mode=export&company_id=1&sealine=cma cgm
{
"port_fees": {
"20st": [
[
"B/L",
"Bill of lading fee",
30,
true
],
[
"EXP",
"Export Service",
90,
false
],
[
"OTHC",
"Original Terminal Handling Charge",
325,
false
]
],
"40st": [
[
"B/L",
"Bill of lading fee",
30,
true
],
[
"EXP",
"Export Service",
120,
false
],
[
"OTHC",
"Original Terminal Handling Charge",
375,
false
]
],
"40hq": [
[
"B/L",
"Bill of lading fee",
30,
true
],
[
"EXP",
"Export Service",
120,
false
],
[
"OTHC",
"Original Terminal Handling Charge",
375,
false
]
],
"rate_id": 8644,
"company_name": "Chinese Brothers Ltd",
"company_id": 92836,
"company_address": "CN, Shanghai",
"company_logo": "https://www.searates.com/design/images/import/users/92836/company/company-logo-l.jpg",
"profile": 171430,
"profile_name": "Anna Moto",
"profile_email": "sales@chinese-brothers.com",
"profile_phone": "38-095-7790488"
}
}
body {
> section,
> footer {
position: relative;
margin: 0 auto;
padding: $section-padding 0;
overflow: hidden;
}
}
Example LCL URL
https://sirius.searates.com/api/port-fees?key=YOUR_API_KEY_HERE&type=LCL&port_id=304&mode=export&company_id=1
{
"port_fees": {
"lcl": [
[
"ADE",
"Agency Documentation Fee Exports",
30,
true
],
[
"OTHC",
"Original Terminal Handling Charge",
[
35,
0.035
],
false
],
[
"PAE",
"Port Additionals / Port Dues - Export",
[
25,
0.025
],
false
]
],
"rate_id": 779,
"company_name": "Indicative",
"company_id": 421897,
"company_address": "UA",
"company_logo": "https://www.searates.com/design/images/import/users/421897/company/company-logo-l.jpg",
"profile": 553943,
"profile_name": "Indicative Rates",
"profile_email": "interpolation@searates.com",
"profile_phone": "+380999999999"
}
}
body {
> section,
> footer {
position: relative;
margin: 0 auto;
padding: $section-padding 0;
overflow: hidden;
}
}
Example AIR URL
https://sirius.searates.com/api/port-fees?key=YOUR_API_KEY_HERE&type=AIR&port_id=304&mode=export&company_id=1
{
"port_fees": {
"air": [
[
"EXP",
"Export Service",
[
0.5,
0.4,
0.3,
0.2,
0.1
],
false
],
[
"ODF",
"Documentation Fee - Origin",
80,
true
]
],
"rate_id": 3434,
"company_name": "Indicative",
"company_id": 421897,
"company_address": "UA",
"company_logo": "https://www.searates.com/design/images/import/users/421897/company/company-logo-l.jpg",
"profile": 553943,
"profile_name": "Indicative Rates",
"profile_email": "interpolation@searates.com",
"profile_phone": "+380999999999"
}
}
body {
> section,
> footer {
position: relative;
margin: 0 auto;
padding: $section-padding 0;
overflow: hidden;
}
}