> ## 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.

# ProfilesAPI

> Company profiles, statistics, and summaries

## profile()

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

Get company profile information.

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

### Example

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

## recommendation()

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

Get analyst recommendation trends.

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

### Example

```typescript theme={null}
const recs = await client.profiles.recommendation('AAPL');
```

## statistics()

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

Get key statistics for a company.

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

### Example

```typescript theme={null}
const stats = await client.profiles.statistics('AAPL');
```

## summary()

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

Get summary details for a company.

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

### Example

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

## calendar()

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

Get calendar events including earnings and dividends.

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

### Example

```typescript theme={null}
const events = await client.profiles.calendar('AAPL');
```

## info()

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

Get company information and summary profile.

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

### Example

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