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

# Generate Research

> Deep research with web access

<Info>
  <Icon icon="coins" /> **1 credit** per call
</Info>

## Method

```typescript theme={null}
services.ai.generateResearch(params);
```

Performs comprehensive web research on a topic using AI.

## Input

<ParamField path="query" type="string" required>
  Research query/topic
</ParamField>

## Output

<ResponseField name="content" type="string">
  Research report content
</ResponseField>

## Example

```typescript theme={null}
const research = await services.ai.generateResearch({
  query: `What is ${ctx.thisRow.get(
    "Company"
  )}'s market position and recent news?`,
});

return research.content;
```
