Skip to content

search
PRO

Type: 'search'
Default: 'search'
Web results with knowledge graph, related questions, and related searches. This is the default surface of search when type is omitted:
const page = await microlink.search('technical seo checklist')
Each result carries title, url, and description:
page.results[0]
// {
//   title: 'Full Technical SEO Checklist (from Start to Finish) - Semrush',
//   url: 'https://www.semrush.com/blog/technical-seo-checklist/',
//   description: 'The full technical SEO checklist covers crawling and indexing issues…'
// }

Page extras

The page can also return these top-level fields alongside results:
FieldTypeDescription
knowledgeGraphobject?Entity panel with title, type, website, image, description, descriptionSource, descriptionLink, and attributes
peopleAlsoAskarray?Related questions with question, snippet, title, and link
relatedSearchesarray?Suggested follow-up queries with query
const page = await microlink.search('apple inc')

page.knowledgeGraph.attributes
// { Headquarters: 'Cupertino, CA', Founded: 'April 1, 1976, Los Altos, CA', … }

page.relatedSearches.map(s => s.query)
// ['Apple Inc full form', 'Apple Inc address', 'Apple Inc stock']
See the web search guide for knowledge-graph and query-expansion workflows.