Endpoint Playground
Test Crawlora's 7NOW Popular Searches 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/popular?vertical=convenience" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | No | 7NOW store id, from GET /7now/stores. Selects that store's regional index within the chosen vertical; omit for the vertical-wide list. Ignored by the restaurant vertical. | |
| vertical | string | No | convenience | Which trending index to read. One of: convenience, restaurant, global. Defaults to convenience. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "39226",
"vertical": "convenience",
"region": "NY_NE",
"suggestions": [
"ice cream",
"coffee",
"pizza",
"chips",
"water"
],
"source_url": "https://www.7now.com/api/bff/search-services/popular?v=1&storeId=39226",
"fetched_at": "2026-09-05T21:10: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 the trending search terms 7NOW shows in its own search box. Two axes select the index and both matter. vertical picks the catalogue: `convenience` and `restaurant` return different terms for the same store, and `global` is the genuinely national cross-vertical list. store_id (from GET /7now/stores) then narrows to that store's region within the vertical -- a New York store returns index NY_NE, a Florida store SE, and omitting it returns the vertical-wide list. The restaurant vertical is the exception: it ignores store_id entirely, returning identical terms for every store. The response echoes back both the vertical and the regional index the terms came from.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "39226",
"vertical": "convenience",
"region": "NY_NE",
"suggestions": [
"ice cream",
"coffee",
"pizza",
"chips",
"water"
],
"source_url": "https://www.7now.com/api/bff/search-services/popular?v=1&storeId=39226",
"fetched_at": "2026-09-05T21:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/popular" \
-H "x-api-key: $CRAWLORA_API_KEY"