Import JSON/CSV
Use the board button to import cards from a CSV or JSON file into the current Trello board.
- Authorize Trello when prompted. The importer needs read and write access so it can read board lists, labels, and members, then create cards.
- Upload or paste a JSON or CSV file.
- Review the automatic field mapping and choose a default list.
- Preview all rows, fix any errors, then import.
CSV example
name,list,desc,due,labels,members,checklist Write launch brief,To Do,Prepare first draft,2026-07-10,Marketing;Priority,alice,Outline|Draft|Review
JSON example
{
"cards": [
{
"name": "Plan kickoff",
"list": "To Do",
"desc": "Schedule kickoff and prepare agenda.",
"labels": ["Planning", "Priority"],
"checklist": ["Draft agenda", "Invite team"]
}
]
}