/api/v1/launcher/search.json?q=coffee
Searches navigation, geography, addresses, lots, transit and owners of record for command-palette style experiences. Every collection is present on every response; new ones are added and existing ones are never renamed. Searches data when q has at least two characters.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
q |
string | No | Search text. Data results begin at two characters. |
Example request
curl --get 'https://hoodsdk.com/api/v1/launcher/search.json?q=coffee'
Example response 200 OK
{
"navigation": [{"id": "nav-places", "name": "All Places", "type": "navigation", "path": "/places/all", "subtitle": null, "icon": "map-pin", "label": "All Places", "keywords": "places restaurants bars cafes shops"}],
"places": [{"id": 42, "name": "Example Cafe", "type": "place", "path": "/places/abc123", "subtitle": "Cafe", "icon": "coffee", "token": "abc123", "place_type": "cafe"}],
"neighborhoods": [],
"districts": [],
"cities": [],
"addresses": [],
"lots": [],
"transport_stops": [],
"transport_lines": [],
"owners": []
}