API Reference
GET /search
Typeahead or match search over the demo catalog.
Mirrors logo.dev's /search?q= contract over the demo catalog. Use it to power autocomplete or to resolve a brand name to a domain before calling /describe.
Try it
GET /search?q=stripe&strategy=typeahead
0 results
(no matches)
Request
GET /search?q={query}&strategy={typeahead|match}Prop
Type
Responses
[
{ "name": "Stripe", "domain": "stripe.com" },
{ "name": "Stripe Press", "domain": "press.stripe.com" }
]{ "error": "q is required" }{ "error": "strategy must be typeahead or match" }- Results are capped at 10.
- Empty result sets return
[], notnull. - Search runs over the demo's curated catalog only — queries that match domains outside the catalog return
[].