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

# get • AI Agent SDK

> get: Get a specific item by ID.

# get

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**KnowledgeStoreProtocol**](../classes/KnowledgeStoreProtocol) class in the [**protocols**](../modules/protocols) module.

Get a specific item by ID.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get(item_id: str) -> Optional[SearchResultItem]
```

## Parameters

<ParamField query="item_id" type="str" required={true}>
  ID of the item to retrieve \*\*kwargs: Backend-specific options
</ParamField>

### Returns

<ResponseField name="Returns" type="Optional[SearchResultItem]">
  SearchResultItem if found, None otherwise
</ResponseField>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/knowledge/protocols.py#L85">
  `praisonaiagents/knowledge/protocols.py` at line 85
</Card>
