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

List a user's organizations.

<Note>
  External Documentation

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

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

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"resource": {
				"id": "or_Uevoq7MyoYsPT9NPc3conL",
				"name": "Acme Corp.",
				"token": "e9d6da*****************************0e8ad"
			},
			"links": {
				"ui": {
					"url": "https://api.us.cobalt.io/links/eyJ0eXBlIjoic29tZXRoaW5nIiwib3JnU2x1ZyI6ImNvYmFsdCIsInBlbnRlc3RUYWciOiJz="
				}
			}
		},
		{
			"resource": {
				"id": "or_SnUYXDBYd2qbaDSuNRNa5q",
				"name": "Lorem Corp.",
				"token": "f1d6da*****************************0e8ad"
			},
			"links": {
				"ui": {
					"url": "https://api.us.cobalt.io/links/eyJ0eXBlIjoic29tZXRoaW5nIiwib3JnU2x1ZyI6ImNvYmFsdCIsInBlbnRlc3RUYWciOiJz="
				}
			}
		}
	],
	"pagination": {
		"next_page": "/orgs?cursor=a1b2c3d4",
		"prev_page": "/orgs?cursor=4d3c2b1a"
	}
}
```

## Workflow Library Example

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