> ## 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.

# List Assets

List all assets for a given organization.

<Note>
  External Documentation

  To learn more, visit the [Cobalt documentation](https://cobalt-public-api.netlify.app/v2/#get-all-assets).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                          |
  | --------------- | ---------------------------------------------------------------------------------------------------- |
  | Asset Type      | Returns assets of chosen asset type.                                                                 |
  | Organization ID | The ID of the organization the assets belong to. Can be obtained by the `List Organizations` action. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                   |
  | --------- | --------------------------------------------------------------------------------------------- |
  | Cursor    | Specifies the pagination cursor for the next page.                                            |
  | Limit     | Number of results per page, valid range is 1-100.                                             |
  | Sort      | Sorts the returning assets by chosen type.                                                    |
  | Tag       | Returns assets with specified tags. Multiple tags can be specified by a comma separated list. |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"resource": {
				"id": "as_GZgcehapJUNh6mjNuqsE4T",
				"title": "Acme Corp. HR System",
				"description": "HR system of the Acme Corp. holding sensitive employee data",
				"asset_type": "web",
				"logo": "https://s3.amazonaws.com/acmecorp/uploads/attachment/file/12345/cat.jpeg?something=1",
				"technology_stack": [
					{
						"title": "React 18.0.0"
					}
				],
				"attachments": [
					{
						"id": "at_LA5GcEL4HRitFGCHREqmzL",
						"file_name": "rainbow.jpeg",
						"download_url": "https://s3.amazonaws.com/acmecorp/uploads/attachment/file/12345/rainbow.jpeg?something=1"
					}
				],
				"tags": [
					{
						"name": "tag1"
					}
				]
			},
			"links": {
				"ui": {
					"url": "https://api.us.cobalt.io/links/eyJ0eXBlIjoic29tZXRoaW5nIiwib3JnU2x1ZyI6ImNvYmFsdCIsInBlbnRlc3RUYWciOiJz="
				}
			}
		}
	],
	"pagination": {
		"next_page": "/assets?cursor=a1b2c3d4",
		"prev_page": "/assets?cursor=4d3c2b1a"
	}
}
```

## Workflow Library Example

[List Assets with Cobalt and Send Results Via Email](https://library.blinkops.com/workflows/list-assets-with-cobalt-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/list-assets-with-cobalt-and-send-results-via-email/canvas" />
</div>
