## List `client.livenews.list(LivenewListParamsquery, RequestOptionsoptions?): LivenewListResponse` **get** `/livenews` Returns a list of live news from query ### Parameters - **query:** `LivenewListParams` - **q:** `string` Search query used to retrieve relevant news from index ### Returns - `LivenewListResponse` - **news:** `News` - **query:** `Query` - **original:** `string` - **spellcheck\_off:** `boolean` - **results:** `Array` - **age:** `string` - **title:** `string` - **type:** `string` - **url:** `string` - **article\_id:** `string | null` - **description:** `string` - **meta\_url:** `MetaURL` - **hostname:** `string` - **netloc:** `string` - **path:** `string` - **scheme:** `string` - **metadata:** `Record` - **page\_age:** `string` - **source\_name:** `string` - **thumbnail:** `Thumbnail` - **src:** `string` - **type:** `string` - **metadata:** `Metadata` - **request\_uuid:** `string` ### Example ```typescript import YouAPI from 'you-api'; const client = new YouAPI({ apiKey: 'My API Key', }); const livenews = await client.livenews.list({ q: 'q' }); console.log(livenews.news); ```