Endpoint Playground
Test Crawlora's SparkFun Product 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/sparkfun/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product search query | |
| page | integer | No | One-based result page (1-100) | |
| per_page | integer | No | Products per page (1-24) | |
| filter | array | No | Repeatable dynamic facet in attribute:value form |
{
"code": 200,
"msg": "OK",
"data": {
"query": "arduino",
"page": 1,
"per_page": 24,
"total": 470,
"total_pages": 20,
"products": [
{
"sku": "DEV-10116",
"name": "Arduino Fio",
"stock_status": "IN_STOCK"
}
],
"filters": [
{
"attribute": "price",
"label": "Price",
"options": [
{
"label": "0-5",
"value": "0_5",
"count": 56
}
]
}
]
}
}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 public SparkFun product data with pagination and dynamic facet filters. Each filter must be `attribute:value`; use values from the response's filters array.
{
"code": 200,
"msg": "OK",
"data": {
"query": "arduino",
"page": 1,
"per_page": 24,
"total": 470,
"total_pages": 20,
"products": [
{
"sku": "DEV-10116",
"name": "Arduino Fio",
"stock_status": "IN_STOCK"
}
],
"filters": [
{
"attribute": "price",
"label": "Price",
"options": [
{
"label": "0-5",
"value": "0_5",
"count": 56
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/sparkfun/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"