Endpoint Playground
Test Crawlora's ImportYeti company report API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/importyeti/company?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | ImportYeti company slug, the last path segment of a /company/{slug} URL |
{
"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"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/importyeti/company?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"