> 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/collections/get.collection_attributes.md).

# get.collection\_attributes()

### Parameters

**`id`***`:integer:`*`ID of a Rasgo Collection`

### Return Object

Rasgo Collection Attributes

### Sample Usage

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

# Return object
response = rasgo.get.collection_attributes(id=#)

# Explore returned object
attr_dict = response.attributes
attr_dict.keys()
attr_dict['key']
```

### Alternate Usage

```python
collection = rasgo.get_collection(#)
attributes = collection.attributes
attr_dict.keys()
attr_dict['key']
```

### Best Practices / Tips
