> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Card By ID

Get a card by its ID.

## Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                                                                                                                                                                                                                                               |
  | ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Actions           | See the ![Actions Nested Resource](https://developer.atlassian.com/cloud/trello/guides/rest-api/nested-resources/#actions-nested-resource).                                                                                                                                                                                                                                               |
  | Attachment Fields | `all` or a comma-separated list of attachment ![fields](https://developer.atlassian.com/cloud/trello/guides/rest-api/object-definitions).                                                                                                                                                                                                                                                 |
  | Attachments       | `true`, `false`, or `cover`.                                                                                                                                                                                                                                                                                                                                                              |
  | Card ID           | The ID of the card. <br />The ID can be retrieved from the card's URL.<br />For example, the card with ID IYqd8yXu can be inferred from the URL [https://trello.com/c/IYqd8yXu/\`number](https://trello.com/c/IYqd8yXu/`number) in list`-`card name\`.                                                                                                                                    |
  | Fields            | `all` or a comma-separated list of ![fields](https://developer.atlassian.com/cloud/trello/guides/rest-api/object-definitions/).<br />Defaults: \`badges, checkItemStates, closed, dateLastActivity, desc, descData,<br />due, start, email, idBoard, idChecklists, idLabels, idList, idMembers, idShort,<br />idAttachmentCover, manualCoverAttachment, labels, name, pos, shortUrl, url. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"badges": {
		"fogbugz": "<string>",
		"checkItems": 0,
		"checkItemsChecked": 1,
		"checkItemsEarliestDue": null,
		"comments": 0,
		"attachments": 2,
		"description": true,
		"due": "2002-10-23T19:03:57.385Z",
		"dueComplete": false,
		"start": "2017-07-18T02:07:44.109Z",
		"ai": false,
		"lastUpdatedByAi": false,
		"attachmentsByType": {
			"trello": {
				"board": 2,
				"card": 2
			}
		},
		"externalSource": null,
		"location": false,
		"votes": 2,
		"maliciousAttachments": 1,
		"viewingMemberVoted": false,
		"subscribed": false
	},
	"checkItemStates": [],
	"closed": false,
	"dueComplete": false,
	"dateLastActivity": "2007-07-05T20:24:10.228Z",
	"desc": "<string>",
	"descData": {
		"emoji": {}
	},
	"due": "2021-11-23T22:19:26.439Z",
	"dueReminder": null,
	"email": null,
	"idBoard": "<string>",
	"idChecklists": [
		"<string>"
	],
	"idList": "<string>",
	"idMembers": [],
	"idMembersVoted": [],
	"idShort": 11,
	"idAttachmentCover": null,
	"labels": [],
	"idLabels": [],
	"manualCoverAttachment": false,
	"name": "<string>",
	"nodeId": "<string>",
	"pinned": false,
	"pos": 1811,
	"shortLink": "<string>",
	"shortUrl": "<string>",
	"start": "2012-01-06T06:17:49.898Z",
	"subscribed": false,
	"url": "<string>",
	"cover": {
		"idAttachment": null,
		"color": null,
		"idUploadedBackground": null,
		"size": "<string>",
		"brightness": "<string>",
		"idPlugin": null
	},
	"isTemplate": false,
	"cardRole": null,
	"mirrorSourceId": null
}
```

## Workflow Library Example

[Get Card by Id with Trello and Send Results Via Email](https://library.blinkops.com/workflows/get-card-by-id-with-trello-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-card-by-id-with-trello-and-send-results-via-email/canvas" />
</div>
