---
title: "Entity Types"
section: "Libraries: Python"
route: /pythonentitytyperequests
account: {accountId}
bruce_api: https://{accountId}.api.nextspace.host
guardian_api: https://guardian.nextspace.host
---
# Entity Types

Once you've configured your API instances, you can start making requests to retrieve and manipulate Entity Type records.

For now, you can only retrieve Entity Type records.

```python
import bruce_models as BM

# Listing all Entity Types in your account.
entity_types = BM.EntityType.get_list(bruce).get("Items")

# Getting a specific Entity Type by its ID.
entity_type = BM.EntityType.get(bruce, "entity-type-id")
```

---

Urls on this page are resolved for account `{accountId}`.
Site index: https://docs.nextspace.host/llms.txt · whole site in one file: https://docs.nextspace.host/llms-full.txt
Human-readable version of this page: https://docs.nextspace.host/pythonentitytyperequests
