For standard Miro Card items, the card details UI displays the following fields:
- Status
- Estimate
- Assignee
- Start Date
- End Date
However, we cannot retrieve the Estimate value through either the REST API or the Web SDK.
REST API
Request:
GET /v2/boards/{board_id}/cards/{item_id}The response contains fields such as:
{
"id": "3458764517517819000",
"data": {
"assigneeId": "3074457362577955300",
"description": "sample card description",
"dueDate": "2023-10-12T22:00:55Z",
"title": "sample card item"
},
"type": "card"
}There is no estimate property or any related field in the response.
