Endpoint Playground
Test Crawlora's ImportYeti company/supplier search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Company or supplier name to search for | |
| page | integer | No | 1-indexed result page, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike",
"page": 1,
"total_pages": 14,
"total_hits": 135,
"results": [
{
"title": "Nike",
"kind": "company",
"slug": "nike",
"country_code": "US",
"address": "1 Bowerman Dr, Beaverton, Or 97005, Us",
"total_shipments": 560,
"most_recent_shipment": "23/11/2024",
"other_addresses_count": 27,
"other_names_count": 17
},
{
"title": "Nike",
"kind": "supplier",
"slug": "nike",
"country_code": "IT",
"address": "Via Della Spiga 32 20121 Milano Mi Italy",
"total_shipments": 57,
"most_recent_shipment": "17/07/2026",
"other_addresses_count": 3,
"other_names_count": 1
}
],
"source_url": "https://www.importyeti.com/api/search?q=nike"
}
}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.
Searches ImportYeti for companies and suppliers matching a name, returning each match's kind (company or supplier), slug, country, address, and headline shipment stats. A "company" result's slug chains into GET /importyeti/company. Credential-free public data, sourced from ImportYeti's own JSON search API (distinct from its human-facing /search results page, which does not render due to a client-side bug in ImportYeti's own app).
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike",
"page": 1,
"total_pages": 14,
"total_hits": 135,
"results": [
{
"title": "Nike",
"kind": "company",
"slug": "nike",
"country_code": "US",
"address": "1 Bowerman Dr, Beaverton, Or 97005, Us",
"total_shipments": 560,
"most_recent_shipment": "23/11/2024",
"other_addresses_count": 27,
"other_names_count": 17
},
{
"title": "Nike",
"kind": "supplier",
"slug": "nike",
"country_code": "IT",
"address": "Via Della Spiga 32 20121 Milano Mi Italy",
"total_shipments": 57,
"most_recent_shipment": "17/07/2026",
"other_addresses_count": 3,
"other_names_count": 1
}
],
"source_url": "https://www.importyeti.com/api/search?q=nike"
}
}curl "https://api.crawlora.net/api/v1/importyeti/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"