Endpoint Playground
Test Crawlora's SparkFun Product 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/product?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sku | string | Yes | SparkFun product SKU |
{
"code": 200,
"msg": "OK",
"data": {
"sku": "DEV-18158",
"name": "SparkFun RedBoard Plus",
"url": "https://www.sparkfun.com/sparkfun-redboard-plus.html",
"stock_status": "IN_STOCK",
"price": {
"value": 29.5,
"currency": "USD"
}
}
}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 public product metadata, price, stock status, images, categories, a cleaned description, and SparkFun-related product recommendations for one SKU.
{
"code": 200,
"msg": "OK",
"data": {
"sku": "DEV-18158",
"name": "SparkFun RedBoard Plus",
"url": "https://www.sparkfun.com/sparkfun-redboard-plus.html",
"stock_status": "IN_STOCK",
"price": {
"value": 29.5,
"currency": "USD"
}
}
}curl "https://api.crawlora.net/api/v1/sparkfun/product?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"