Is there a way to export the entire Trello board as JSON via the API?

I am trying to compare Trello boards to highlight the differences. You can easily download the board in Trello's JSON format by replacing the board name with ".json" in the URL:

http://trello.com/b/board_id_here.json

This requires you to be authenticated using Trello. Is there a way to get this accurate JSON output directly from the Trello API? There are ways to get each of the child objects from the API, but I don’t see a way to extract all the JSON representation of the board and everything connected with it.

Any help is much appreciated!

+4
source share
1 answer

This backup route is simply synonymous with GETting /1/boards/board_id_herewith the following options:

fields: "all"
actions: "all"
action_fields: "all"
actions_limit: 1000
cards: "all"
card_fields: "all"
card_attachments: true
labels: "all"
lists: "all"
list_fields: "all"
members: "all"
member_fields: "all"
checklists: "all"
checklist_fields: "all"
organization: false
+1

All Articles