Is there an API that allows retrieving the list of workspaces a user belongs to?

I want to list all the workspaces that a user belongs to.

I checked the API documentation, but I couldn’t find an API that lists Organizations.
Could you advise on how to achieve this?

Additionally, if such an API doesn’t exist, is there any plan to add it in the future?

Then I recommend you use the two Members API endpoints that provide that information:

  1. Get a Member’s Organizations; and
  2. Get Organizations a Member has been invited to

I recommend that you re-read the Trello REST API documentation, as there is indeed a group of endpoints for managing organizations. It is the group called… Organizations:

1 Like

Thanks for the reply!
I was aware that there’s a section for Organizations in the API documentation, but I was having trouble because there wasn’t a GET /organizations endpoint to list the organizations I belong to.
The two APIs you introduced look like they’ll be helpful!