ImportYeti API endpoint
Use Crawlora's ImportYeti company report API to extract supported public ImportYeti data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/importyeti/companyReturns a normalized ImportYeti company report: identity, headline US customs shipment-volume metrics (total shipments, average TEU, last shipment date, estimated shipping spend), its supplier list, and recent bill-of-lading shipment activity. Credential-free public data, rendered from the company report page through proxied browser renderers. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug | string | Yes | ImportYeti company slug, the last path segment of a /company/{slug} URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/importyeti/company" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- A response missing the company name is treated as an upstream error (parser drift or a blocked/challenge page), never a `200` with empty data. - `suppliers`, `recent_shipments`, `region_breakdown`, and `hs_codes` may come back empty if ImportYeti's template changes the underlying table structure; other fields are unaffected by that. - `hs_codes` is ImportYeti's own "Top 10" list pulled from recent product descriptions, not a full HS-code-chapter breakdown (that's paid-only on ImportYeti's own page). Example response: ```json { "code": 200, "msg": "OK", "data": { "name": "Target 33 South 6Th Street Cc", "slug": "target", "address": "Minneapolis, Mn 55402, Us", "phone": "XXX-XXX-X296", "website": "www.target.com", "also_known_as_names": 229, "also_known_as_addresses": 145, "last_shipment_date": "07/16/2026", "total_shipments": 9123, "avg_teu_per_shipment": 7.19, "avg_teu_per_month": 48.52, "est_shipping_spend": "$27M", "suppliers": [ { "name": "Durus Industries", "slug": "durus-industries", "city": "Maria Fe", "country": "Philippines", "total_shipments": 308, "product_categories": ["Furnitures", "Toys"], "description": "Basketwork Wickerwork Other Article...", "hs_codes": ["4602.19", "8504.40"] } ], "recent_shipments": [ { "date": "07/16/2026", "bill_of_lading": "MOSJMK0H2607003", "supplier_name": "Enuma Chain Mfg Co Ltd", "supplier_slug": "enuma-chain-mfg", "supplier_location": "Kaga Shi, Japan", "weight": "959 kg", "quantity": "2 ctn", "containers": "1", "description": "Kart Chains", "route": "Asia US Pacific", "estimated_freight_cost": "$ 2,563.26" } ], "region_breakdown": [ { "region": "Asia", "percent": 80.3, "countries": [ {"country": "China", "shipments": 4267}, {"country": "Philippines", "shipments": 907} ] } ], "hs_codes": [ { "code": "6404.19.9092", "description": "Valued over $12/pair", "sample_bill_of_lading": "APLU050437011", "product_description": "Footwear Po- 1101064043 Hs Code-6404199092" } ], "url": "https://www.importyeti.com/company/target-33-south-6th-street-cc", "source_url": "https://www.importyeti.com/company/target" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Target 33 South 6Th Street Cc",
"slug": "target",
"address": "Minneapolis, Mn 55402, Us",
"phone": "XXX-XXX-X296",
"website": "www.target.com",
"also_known_as_names": 229,
"also_known_as_addresses": 145,
"last_shipment_date": "07/16/2026",
"total_shipments": 9123,
"avg_teu_per_shipment": 7.19,
"avg_teu_per_month": 48.52,
"est_shipping_spend": "$27M",
"suppliers": [
{
"name": "Durus Industries",
"slug": "durus-industries",
"city": "Maria Fe",
"country": "Philippines",
"total_shipments": 308,
"product_categories": [
"Furnitures",
"Toys"
],
"description": "Basketwork Wickerwork Other Article...",
"hs_codes": [
"4602.19",
"8504.40"
]
}
],
"recent_shipments": [
{
"date": "07/16/2026",
"bill_of_lading": "MOSJMK0H2607003",
"supplier_name": "Enuma Chain Mfg Co Ltd",
"supplier_slug": "enuma-chain-mfg",
"supplier_location": "Kaga Shi, Japan",
"weight": "959 kg",
"quantity": "2 ctn",
"containers": "1",
"description": "Kart Chains",
"route": "Asia US Pacific",
"estimated_freight_cost": "$ 2,563.26"
}
],
"region_breakdown": [
{
"region": "Asia",
"percent": 80.3,
"countries": [
{
"country": "China",
"shipments": 4267
},
{
"country": "Philippines",
"shipments": 907
}
]
}
],
"hs_codes": [
{
"code": "6404.19.9092",
"description": "Valued over $12/pair",
"sample_bill_of_lading": "APLU050437011",
"product_description": "Footwear Po- 1101064043 Hs Code-6404199092"
}
],
"url": "https://www.importyeti.com/company/target-33-south-6th-street-cc",
"source_url": "https://www.importyeti.com/company/target"
}
}Request schema
No body schema
Response schema
#/definitions/importyeti.companyResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | importyeti.Company | No | ||||
| data.address | string | No | Minneapolis, Mn 55402, Us | |||
| data.also_known_as_addresses | integer | No | 145 | |||
| data.also_known_as_names | integer | No | 229 | |||
| data.avg_teu_per_month | number | No | 48.52 | |||
| data.avg_teu_per_shipment | number | No | 7.19 | |||
| data.est_shipping_spend | string | No | $27M | |||
| data.hs_codes | array | No | ||||
| data.hs_codes[].code | string | No | 6404.19.9092 | |||
| data.hs_codes[].description | string | No | Valued over $12/pair | |||
| data.hs_codes[].product_description | string | No | Footwear Po- 1101064043 Hs Code-6404199092 | |||
| data.hs_codes[].sample_bill_of_lading | string | No | APLU050437011 | |||
| data.last_shipment_date | string | No | 07/16/2026 | |||
| data.name | string | No | Target 33 South 6Th Street Cc | |||
| data.phone | string | No | XXX-XXX-X296 | |||
| data.recent_shipments | array | No | ||||
| data.recent_shipments[].bill_of_lading | string | No | MOSJMK0H2607003 | |||
| data.recent_shipments[].containers | string | No | 1 | |||
| data.recent_shipments[].date | string | No | 07/16/2026 | |||
| data.recent_shipments[].description | string | No | Kart Chains | |||
| data.recent_shipments[].estimated_freight_cost | string | No | $ 2,563.26 | |||
| data.recent_shipments[].quantity | string | No | 2 ctn | |||
| data.recent_shipments[].route | string | No | Asia US Pacific | |||
| data.recent_shipments[].supplier_location | string | No | Kaga Shi, Japan | |||
| data.recent_shipments[].supplier_name | string | No | Enuma Chain Mfg Co Ltd | |||
| data.recent_shipments[].supplier_slug | string | No | enuma-chain-mfg | |||
| data.recent_shipments[].weight | string | No | 959 kg | |||
| data.region_breakdown | array | No | ||||
| data.region_breakdown[].countries | array | No | ||||
| data.region_breakdown[].countries[].country | string | No | China | |||
| data.region_breakdown[].countries[].shipments | integer | No | 4267 | |||
| data.region_breakdown[].percent | number | No | 80.3 | |||
| data.region_breakdown[].region | string | No | Asia | |||
| data.slug | string | No | target-33-south-6th-street-cc | |||
| data.source_url | string | No | https://www.importyeti.com/company/target | |||
| data.suppliers | array | No | ||||
| data.suppliers[].city | string | No | Maria Fe | |||
| data.suppliers[].country | string | No | Philippines | |||
| data.suppliers[].description | string | No | ||||
| data.suppliers[].hs_codes | array | No | 4602.19,8504.40 | |||
| data.suppliers[].name | string | No | Durus Industries | |||
| data.suppliers[].product_categories | array | No | Furnitures,Toys | |||
| data.suppliers[].slug | string | No | durus-industries | |||
| data.suppliers[].total_shipments | integer | No | 308 | |||
| data.total_shipments | integer | No | 9123 | |||
| data.url | string | No | https://www.importyeti.com/company/target-33-south-6th-street-cc | |||
| data.website | string | No | www.target.com | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/importyeti/company" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms