> For the complete documentation index, see [llms.txt](https://docs.rasgoml.com/rasgo-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rasgoml.com/rasgo-docs/rasgo-0.1/pyrasgo-0.3/features/get.feature.md).

# get.feature()

### Parameters

**`id`***`:integer:`*`ID of a Rasgo Feature object`

### Return Object

[Rasgo Feature](broken://pages/-MQ8Su10bSyjj0MEGibj)

### Sample Usage

```python
# Connect to rasgo
api_key = '<your api key>'
rasgo = pyrasgo.connect(api_key) 

# Return object
feature = rasgo.get.feature(#)

# Explore returned object
feature.id
feature.name
feature.dataType
```

### Best Practices / Tips

{% hint style="success" %}
TIP: data from Rasgo get methods return as python classes with interactive properties and methods. Use your python IDE's inspection tools to explore all operations available on the class, or explore Rasgo Primitives in these docs for options.
{% endhint %}
