# Account ```{eval-rst} .. autoclass:: ab.api.endpoints.account.AccountEndpoint :members: :undoc-members: ``` ## Per-endpoint reference Each route-backed method has its own page rendering the HTTP route, the Python and CLI call signatures, and the request/response model field tables. This is the page `help(api.account.)` links to via its `Docs:` footer. These pages are generated by `scripts/generate_endpoint_docs.py` and kept current by a CI freshness gate. ```{toctree} :maxdepth: 1 :glob: account/* ``` ## Methods ### get_profile `GET /account/profile` — The authenticated user's account profile (user name, email, company, contact id, roles). ```python profile = api.account.get_profile() print(profile.company_id) ```