Endpoint Playground
Test Crawlora's SparkFun Category Browse 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/category?url_key=<url_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url_key | string | Yes | SparkFun category URL key | |
| 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": {
"category": {
"id": "MTAwMw==",
"name": "Development Boards",
"url_key": "development-boards",
"url_path": "development-boards"
},
"page": 1,
"per_page": 24,
"total": 617,
"total_pages": 26,
"products": [
{
"sku": "DEV-18158",
"name": "SparkFun RedBoard Plus"
}
]
}
}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 paginated public products and dynamic facet filters for a SparkFun category URL key. Each filter must be `attribute:value`; use values from the response's filters array.
{
"code": 200,
"msg": "OK",
"data": {
"category": {
"id": "MTAwMw==",
"name": "Development Boards",
"url_key": "development-boards",
"url_path": "development-boards"
},
"page": 1,
"per_page": 24,
"total": 617,
"total_pages": 26,
"products": [
{
"sku": "DEV-18158",
"name": "SparkFun RedBoard Plus"
}
]
}
}curl "https://api.crawlora.net/api/v1/sparkfun/category?url_key=<url_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"