List bills of lading for a supplier
Paginated US import BOLs linked to an overseas supplier slug. Costs 1 data credit per 10 records.
Parameters#
Path parameters
supplierstringrequiredImportYeti supplier URL slug — the hyphenated segment from the website path
/supplier/...(e.g.yiwu-yida-import-and-export-co-ltd), not the supplier display or legal name. To resolve a name to a slug, useGET /supplier/search. Slugs use lowercase letters, digits, and hyphens; letter casing in this parameter is normalized. Underscores are accepted in place of hyphens.
Query parameters
start_datestringoptionaldefault01/01/2021end_datestringoptionaldefault08/31/2026page_sizenumberoptionaldefault10Number of returned results
offsetnumberoptionaldefault0Results starting position
fieldsstringoptionalComma-separated list of fields to keep on each returned record, e.g.
bol_number,arrival_date,supplier_name. Everything else is omitted. Names that the record does not carry are ignored. The envelope (requestCost,creditsRemaining,executionTime,totalCount) is always returned in full. Cannot be combined withexclude. Omit for the full record.excludestringoptionalComma-separated list of fields to drop from each returned record, e.g.
containers,shipping_rate. Every other field is kept. Cannot be combined withfields. Omit for the full record.formatstringoptionaldefaultjsonResponse encoding. Defaults to
json. Passtoonto receive TOON — the same data in a compact, token-efficient text form intended for LLM prompts. Error responses are always JSON.one ofjsontoon
fields, exclude, and format work the same way on every endpoint — Response shaping has worked examples.
Response#
A page of US import bills of lading for that supplier.
{
"requestCost": 1,
"creditsRemaining": 9998.5,
"data": ["CCLLMILS17011590", …],
"executionTime": "224ms"
}Top-level fields#
data— an array where each item is a bill of lading numberrequestCost— Data credits used for this call (0 if none)creditsRemaining— Your data credit balance after the callexecutionTime— How long the request took
data is an array of string values — each one is a bill of lading number. Pass one to GET /v1.0/bol/{number} to expand it into the full shipment record.
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.