Guide

Find a company's suppliers

Goal: start from a US company name, resolve its ImportYeti slug, load the profile, then pull related overseas suppliers from shipment data.

1. Search for the company

Use GET /v1.0/company/search. This call is free.

curl "https://data.importyeti.com/v1.0/company/search?name=ikea&page_size=5" \
  -H "IYApiKey: YOUR_API_KEY"

From each hit, take the slug after company/ in key — for example ikea-supply.

2. Load the company profile

GET /v1.0/company/{company} costs 1 data credit and returns the full profile (aliases, contacts, HS codes, trading partners, and more).

3. Rank suppliers from shipment data

For a volume-ranked supplier list tied to that importer, use PowerQuery US import suppliers with the company slug:

curl "https://data.importyeti.com/v1.0/powerquery/us-import/suppliers?company=ikea-supply&page_size=10" \
  -H "IYApiKey: YOUR_API_KEY"

Related