List deploys
render_list_deploysList deploys for a Render service with filters by status, creation time, or update time. Supports pagination for large result sets.
Instructions
List deploys. List deploys matching the provided filters. If no filters are provided, all deploys for the service are returned. Calls GET /services/{serviceId}/deploys on the Render Public API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | The maximum number of items to return. For details, see [Pagination](https://api-docs.render.com/reference/pagination). | |
| cursor | No | The position in the result list to start from when fetching paginated results. For details, see [Pagination](https://api-docs.render.com/reference/pagination). | |
| status | No | Filter for deploys with the specified statuses | |
| serviceId | Yes | The ID of the service | |
| createdAfter | No | Filter for deploys created after a certain time (specified as an ISO 8601 timestamp) | |
| updatedAfter | No | Filter for deploys updated after a certain time (specified as an ISO 8601 timestamp) | |
| createdBefore | No | Filter for deploys created before a certain time (specified as an ISO 8601 timestamp) | |
| finishedAfter | No | Filter for deploys finished after a certain time (specified as an ISO 8601 timestamp) | |
| updatedBefore | No | Filter for deploys updated before a certain time (specified as an ISO 8601 timestamp) | |
| finishedBefore | No | Filter for deploys finished before a certain time (specified as an ISO 8601 timestamp) |