Get all Trello Boards via the REST API:
xxxxxxxxxx
1) Replace apiKey and token in the code below with your own key/token
2) Select: Import > Raw Text > Paste the code below and execute:
curl --location --request GET 'https://api.trello.com/1/members/me/boards' \
--header 'Content-Type: application/json' \
--data '{
"key": "{{ apiKey aka personal key }}",
"token": "{{ token }}"
}'