> ## 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 All Projects

Retrieve a list of scanned projects in an organization. Does not return archived repositories.

<Note>
  External Documentation

  To learn more, visit the [SemGrep documentation](https://semgrep.dev/api/v1/docs/#tag/Project/operation/semgrep_app.saas.handlers.repository.openapi_list_recent_projects).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                       |
  | --------------- | ----------------------------------------------------------------------------------------------------------------- |
  | Deployment Slug | Slug of the deployment name. Can be obtained by the `Get Deployment` action, or in your `Settings` in the Web UI. |
  | Page Number     | The number of the results page to retrieve. Pages are numbered from zero (0).                                     |
  | Page Size       | The size of page to return. Valid range is 100 - 3000.                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"projects": [
		{
			"id": 1234567,
			"name": "returntocorp/semgrep",
			"url": "https://github.com/returntocorp/semgrep",
			"tags": [
				"tag"
			],
			"created_at": "2020-11-18T23:28:12.391807Z",
			"latest_scan_at": "2023-01-13T20:51:51.449081Z",
			"primary_branch": "refs/heads/custom-main",
			"default_branch": "refs/heads/main"
		}
	]
}
```

## Workflow Library Example

[List All Projects with Semgrep and Send Results Via Email](https://library.blinkops.com/workflows/list-all-projects-with-semgrep-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-all-projects-with-semgrep-and-send-results-via-email/canvas" />
</div>
