> For the complete documentation index, see [llms.txt](https://fast-studios.gitbook.io/press-e/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fast-studios.gitbook.io/press-e/manual/scripting/interaction-manager/interactionmanager.obtainedkeys.md).

# InteractionManager.ObtainedKeys

Runtime list that contains **all keys obtained by the player**.<br>

You can access it like this:

```csharp
void ObtainedKeysExample()
{
    foreach (Key k in InteractionManager.singleton.ObtainedKeys)
    {
        // do something with k
    }
    
    // If you need to work with the list object itself:
    List<Key> actualObtainedKeys = InteractionManager.singleton.ObtainedKeys;
}
```
