Endpoint Playground
Test Crawlora's 7NOW Suggest 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/suggest?q=<q>&vertical=convenience" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search term, at least 3 characters. | |
| vertical | string | No | convenience | Which search index to complete against. One of: convenience, restaurant, global. Defaults to convenience. |
{
"code": 200,
"msg": "OK",
"data": {
"query": "chi",
"suggestions": [
"chips ahoy",
"chips",
"chicken",
"chicken wings",
"chicken sandwich"
],
"source_url": "https://www.7now.com/api/bff/search-services/typeahead?q=chi&v=1",
"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 search-term completions for a partial query, e.g. "chi" -> "chips ahoy", "chips", "chicken". No store is required. q must be at least 3 characters -- shorter values return a typed invalid-param error, matching upstream's own enforced minimum. vertical selects which search index to complete against, and the indexes are materially different rather than variations on one list: for "chi", `convenience` answers "chips ahoy, chips, chicken wings" while `restaurant` answers "chipotle, chinese food, chili". `global` is a sparse cross-vertical index -- many prefixes legitimately return no suggestions there.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chi",
"suggestions": [
"chips ahoy",
"chips",
"chicken",
"chicken wings",
"chicken sandwich"
],
"source_url": "https://www.7now.com/api/bff/search-services/typeahead?q=chi&v=1",
"fetched_at": "2026-09-05T19:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"