Endpoint Playground
Test Crawlora's 7NOW 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/7now/search?store_id=<store_id>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | 7NOW store id, from GET /7now/stores. | |
| q | string | Yes | Keyword search term. | |
| skip | integer | No | Pagination offset. Defaults to 0. | |
| limit | integer | No | Max results returned, 1-50. Defaults to 20. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "37134",
"query": "pizza",
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"product_type": "product",
"category": "Fresh Food",
"upc": "00072180687340",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"list_price_cents": 1299,
"price_cents": 1099,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"available": true,
"available_quantity": 100,
"age_restricted": false
}
],
"total": 100,
"count": 20,
"has_more": true,
"brands": [
{
"brand_id": "262b9206-d316-3cf8-9ccf-a06998c5c0a1",
"brand_name": "Pringles",
"logo_url": "https://deuktbth81ifn.cloudfront.net/7now/US/Pringles/bxzvac2x8uqtehsr6qxw.png",
"rank": 25,
"is_sponsored": false
}
],
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/search-services/store/37134/products/search",
"fetched_at": "2026-09-05T19:40:00Z"
}
}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 one 7NOW store's keyword search results: matching products and combo deals with current pricing (list price, everyday sale price, and any further active promotion), live availability, and a sponsored-brand facet list relevant to the query. store_id comes from GET /7now/stores. A query matching nothing returns a normal 200 with an empty items array, not an error.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "37134",
"query": "pizza",
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"product_type": "product",
"category": "Fresh Food",
"upc": "00072180687340",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"list_price_cents": 1299,
"price_cents": 1099,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"available": true,
"available_quantity": 100,
"age_restricted": false
}
],
"total": 100,
"count": 20,
"has_more": true,
"brands": [
{
"brand_id": "262b9206-d316-3cf8-9ccf-a06998c5c0a1",
"brand_name": "Pringles",
"logo_url": "https://deuktbth81ifn.cloudfront.net/7now/US/Pringles/bxzvac2x8uqtehsr6qxw.png",
"rank": 25,
"is_sponsored": false
}
],
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/search-services/store/37134/products/search",
"fetched_at": "2026-09-05T19:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/search?store_id=<store_id>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"