> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/continuous-delivery/troubleshooting-and-resources/armory/how-tos/how-to-get-a-list-of-all-executions-of-a-given-application-via-api-calls.md).

# How to get a list of all executions of a given application via API calls

### Introduction <a href="#introduction" id="introduction"></a>

The following information explains how to get a list of all executions of a given application via API calls in Spinnaker.

### Prerequisites <a href="#prerequisites" id="prerequisites"></a>

A running Spinnaker instance with a known Gate URL is need to interact with the Spinnaker API.

### Instructions <a href="#instructions" id="instructions"></a>

A sample curl command to retrieve a list of an application's pipeline executions is shown below: `curl -k 'https:///applications//pipelines?limit=&statuses=' ​` The RESTful API Swagger UI can be accessed using the following URL format: `http(s):///swagger-ui.html​`

* The default `getPipelinesUsingGET` API method is set to 10 executions if a limit of type `**int**` isn't specified. Note that it is advised to set a number higher than the expected output intended. The resulting executions can ten be filtered out using a tool like **jq** for example. More information in the link below: <https://spinnaker.io/docs/reference/api/docs.html#api-Applicationcontroller-getPipelinesUsingGET>
