> ## 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 Entry • AI Agent SDK

> get_entry: Get registry entry for a runtime.

# get\_entry

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

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

Get registry entry for a runtime.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get_entry(runtime_id: str) -> Optional[RuntimeRegistryEntry]
```

## Parameters

<ParamField query="runtime_id" type="str" required={true}>
  Runtime identifier
</ParamField>

### Returns

<ResponseField name="Returns" type="Optional[RuntimeRegistryEntry]">
  RuntimeRegistryEntry 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/runtime/registry.py#L90">
  `praisonaiagents/runtime/registry.py` at line 90
</Card>
