Search US export bills of lading
PowerQuery over US export shipment documents. Filter by product, HS code, destination country, vessel, and more.
Parameters#
Query parameters
page_sizenumberoptionaldefault10Number of returned results
offsetnumberoptionaldefault0Results starting position
start_datestringoptionaldefault01/01/2021end_datestringoptionaldefault08/31/2026pagenumberoptionalPage number (1-indexed). Takes precedence over offset.
product_descriptionstringoptionalSupports boolean operators and wildcards
AND / OR / NOTwildcards * ?weightstringoptionalSupports ranges
ranges [a TO b]teustringoptionalSupports ranges
ranges [a TO b]company_total_shipmentsstringoptionalSupports ranges
ranges [a TO b]hs_codestringoptionalSupports boolean operators and wildcards
AND / OR / NOTwildcards * ?entry_portstringoptionalSupports boolean operators and wildcards
AND / OR / NOTwildcards * ?exit_portstringoptionalSupports boolean operators and wildcards
AND / OR / NOTwildcards * ?
fields, exclude, and format work the same way on every endpoint — Response shaping has worked examples.
Response#
A page of matching US export bills of lading.
{
"requestCost": 1,
"creditsRemaining": 9998.5,
"data": {
"data": [
{
"bol_number": "BSC2507BIOP2",
"bol_bill_type": "R",
"master_bol_number": "BSC2507BIOP2",
"arrival_date": "07/27/2025",
"lcl": false,
"company_name": "Michelin North America Inc",
"company_address": "One Parkway South 29615 Greenville Greenville, Sc Sc Us 29615",
"company_country": "United States"
// …16 more fields
}
],
"totalCount": 59583
},
"executionTime": "224ms"
}Rows are nested one level deeper
PowerQuery routes put the records at data.data — not at data. The total number of matches is on data.totalCount, which is the value you page against. Note that this key is named per route family (totalCount, totalCompanies, totalSuppliers, totalBrokers).
Top-level fields#
data— an object holding the result rows (data.data) and the match total (data.totalCount)requestCost— Data credits used for this call (0 if none)creditsRemaining— Your data credit balance after the callexecutionTime— How long the request tooktotalCount— Total matching records, not just this page
Fields on each row in data.data#
bol_numberstringBSC2507BIOP2bol_bill_typestringRWhich filing this is: “R” for a regular (carrier-filed) bill, “H” for a house bill filed by a forwarder.
master_bol_numberstringBSC2507BIOP2The carrier-level bill this house bill rolls up to. House bills covering one master shipment share this value.
arrival_datestring07/27/2025lclbooleanfalseLess than container load: the cargo shared a container with other shippers rather than filling its own.
company_namestringMichelin North America Inccompany_addressstringOne Parkway South 29615 Greenville Greenville, Sc Sc Us 29615company_countrystringUnited Statescompany_country_codestringUScompany_total_shipmentsnumber18293entry_portstringCharleston, ScUS port where cargo is received
exit_portstringThe Port Of Charleston, Charleston, South CarolinaForeign port where cargo is loaded for export
Errors#
Failures come back as JSON with a statusCode and message. The ones worth handling here are 401 (bad or missing key), 403 (out of credits), and 404 (no such record). See all error responses.