US Import Records: Suppliers, Countries & Shipment Volume avatar

US Import Records: Suppliers, Countries & Shipment Volume

Pricing

Pay per usage

Go to Apify Store
US Import Records: Suppliers, Countries & Shipment Volume

US Import Records: Suppliers, Countries & Shipment Volume

Look up a US importer's public sourcing profile: total shipments, date range covered, and the supplier list with country, location and shipment volume per supplier. Sourced from public US Customs bill of lading manifest data. No login. Works in Claude, ChatGPT and any MCP agent.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

The Mine Works

The Mine Works

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

5 days ago

Last modified

Share

US Import Supplier Intelligence: Suppliers, Countries & Shipment Volume

⚑ Plain HTTP. No login, no proxy, no browser.

πŸ’Έ You are only charged for rows actually delivered. A company that does not resolve is never billed.

Overview

Give this actor a US company name or a public profile URL and get back its sourcing profile: who supplies it, which country each supplier ships from, roughly how many shipments per supplier, and a breakdown of the product categories (HTS/HS codes) it imports, each with a sample bill of lading reference and a product description line pulled from a real manifest entry. This is the same category of data every "who supplies my competitor" tool sells, built directly from the public data those tools themselves display.

βœ… Company name or exact profile URL Β· βœ… Supplier name, country, location and shipment count Β· βœ… Top HTS/HS code breakdown Β· βœ… MCP ready for AI agents

An honest note on the underlying data and scope

US Customs holds import manifest (bill of lading) records, and this category of data is public in principle under 19 U.S.C. 1431. But there is no documented bulk API or data.gov feed for it: the Data Liberation Project filed a Freedom of Information Act request in 2023 asking Customs and Border Protection for the underlying ACE manifest tables, and CBP rejected it outright, stating the records were not available that way, despite evidence such records had been obtained via FOIA before. Every commercial import intelligence product, ImportYeti, Panjiva, ImportGenius, Trademo, and the dozen plus ImportYeti style actors already on the Apify Store, sits on the same non public pipeline into that data. None of them reach a documented government API either.

Given that, this actor reads importyeti.com's own public company profile pages, the same free, search engine indexed pages every one of those competitors and Google itself already reads, not a paid or authenticated part of the site. A plain request without a realistic browser signature gets a Cloudflare block on this site; a request with an ordinary browser TLS fingerprint gets the full page normally, the same way any real browser visiting the page would. The site's own robots.txt disallows its search endpoint specifically, so this actor never queries it; it only fetches a company's own profile URL, exactly the kind of page robots.txt leaves open.

The public page itself only fully renders a company's top suppliers by shipment volume without requiring a login, typically somewhere between 5 and 20 depending on the company, plus a top 10 HTS code table. Anything beyond that sits behind the source site's own paid product, which this actor does not attempt to reach, log in to, or otherwise access. It also does not return individual shipment by shipment manifest lines, only company level sourcing summaries built from what the public page shows. If you need a complete supplier roster or line level shipment detail for a very large importer, that is a different, paid product elsewhere, and this README says so rather than implying otherwise.

Input

{
"companies": ["https://www.importyeti.com/company/nike"],
"includeHtsBreakdown": true,
"maxSuppliersPerCompany": 30
}
FieldWhat it takes
companiesOne or more US importers. Paste the exact public profile URL when you have it for a guaranteed match, or a plain company name for a best effort guess. A guessed name that does not resolve is reported and skipped, never charged.
includeHtsBreakdownAlso deliver the top product categories (HTS codes) each company imports, with a sample bill of lading number and description per code.
maxSuppliersPerCompanyCap on supplier rows per company. Raising this above what the source page actually renders does not surface more rows, it only removes your own ceiling.

Output

This actor delivers three row shapes, told apart by record_type.

{
"record_type": "supplier",
"queried_company": "https://www.importyeti.com/company/nike",
"supplier_name": "Apl Logistics Vietnam",
"supplier_country": "Vietnam",
"supplier_location": "Xa Ba Thanh",
"supplier_total_shipments": 189,
"category_breakdown": ["Footwear", "Apparel - knitted", "Boilers/machinery", "Other"],
"source_url": "https://www.importyeti.com/company/nike"
}
FieldDescription
🏷️ record_typecompany_profile, supplier, or hts_code
🏒 company_name / company_addressResolved identity, on the company_profile row
πŸ“… date_rangeShipment history date range covered by the profile, as shown
πŸ₯‡ top_supplier_nameThe company's largest supplier by shipment volume, from the profile summary
🚚 supplier_name / supplier_country / supplier_locationSupplier identity, on supplier rows
πŸ“¦ supplier_total_shipmentsShipments from this supplier to the queried company
🧾 hts_code / hts_descriptionTariff code and category, on hts_code rows
πŸ“„ sample_bol_number / product_description_sampleOne real manifest reference and description line for that code

Common use cases

Competitive sourcing intelligence. See where a competitor actually sources product, and which countries and suppliers carry the volume.

Supplier discovery. Find factories and logistics partners already proven to ship a category you care about, by reading who supplies a company already selling it.

Lead generation for freight forwarders and trade finance. Identify importers with real, ongoing shipment volume worth pursuing as clients.

Due diligence. Cross check a supplier a counterparty claims to use against what their own import history shows.

AI agents. Feed structured sourcing profiles into an agent that answers "who makes this company's products, and where."

Pricing

EventPriceYou pay when
Company profile delivered$0.02A company's profile summary lands in your dataset
Supplier delivered$0.006A supplier row lands in your dataset
HTS code delivered$0.006An HTS code row lands in your dataset

A company that does not resolve is never charged.

Run it on a schedule

  1. Run once with the companies you want to track, then click Save as a task.
  2. In the Apify Console go to Schedules, Create new.
  3. Pick a frequency and attach the saved task.
  4. Wire the dataset to Sheets, Slack, or a webhook from the Integrations tab.

A monthly refresh on a watchlist of competitors is the most common setup.

FAQ

Do I need an ImportYeti account? No. The actor reads the public company profile pages only.

Why did a company I searched for not resolve? Either it has no public import history tracked on the source site, or the name based URL guess did not match. Paste the exact profile URL from the site for a guaranteed match.

Why do some large importers return fewer supplier rows than I expected? The public page only fully renders a top slice of suppliers without a login. This actor reports exactly what is there and does not fabricate additional rows.

Does this return individual shipment records? No. It returns company level summaries: a supplier list with shipment counts, and a top HTS code breakdown with one sample manifest line per code. Line by line shipment history is a separate, paid product on the source site.

How current is the data? The date_range field on the company profile row shows the span the source page itself reports covering, which the site describes as pulled from ongoing manifest filings.

Use from Claude, ChatGPT and any MCP agent

https://mcp.apify.com/?tools=themineworks/us-import-supplier-intelligence

Or call it programmatically:

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('themineworks/us-import-supplier-intelligence').call({
companies: ['https://www.importyeti.com/company/nike'],
includeHtsBreakdown: true,
maxSuppliersPerCompany: 30,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Questions, or need a field we do not return yet? Reach out through the Apify profile.