> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axionquant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NewsAPI

> Financial news and market updates

## general()

```typescript theme={null}
general(): Promise<ApiResponse>
```

Get general financial news.

### Example

```typescript theme={null}
const news = await client.news.general();
```

## company()

```typescript theme={null}
company(ticker: string): Promise<ApiResponse>
```

Get company-specific news.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const news = await client.news.company('AAPL');
```

## country()

```typescript theme={null}
country(country: string): Promise<ApiResponse>
```

Get news filtered by country.

<ParamField path="country" type="string" required>
  Country code (e.g., "US", "UK")
</ParamField>

### Example

```typescript theme={null}
const news = await client.news.country('US');
```

## category()

```typescript theme={null}
category(category: string): Promise<ApiResponse>
```

Get news filtered by category.

<ParamField path="category" type="string" required>
  News category
</ParamField>

### Example

```typescript theme={null}
const news = await client.news.category('technology');
```
