v1
latestOpenAPI 3.0.32026-07-22238629559.2 KBList dependencies
Returns all (or filtered) dependencies for a deployment using pagination
Path parameters
Deployment ID (numeric). Example: 123. Can be found at /deployments, or in your Settings in the web UI.
Query parameters
Deprecated - use package_filters instead. Filter by dependency name (e.g. lodash).
Deprecated - use package_filters instead. Filter by dependency version (e.g. 1.0.1).
Repository IDs (numeric) to filter by. Omit if the endpoint has Repository ID as a path parameter. Use Projects endpoints to retrieve Repository IDs.
Filter by transitivity.
Filter by ecosystem (e.g. npm, pypi, etc).
Filter by path to the lockfile (e.g. foo/bar/package-lock.json).
Filter by license policy setting outcome.
Filter by license (e.g. MIT).
Cursor to paginate through the dependencies. Provide a cursor value from the response to retrieve the next page.
Number of dependencies per page.
Response
OK
Example response
{
"dependencies": [
{
"id": "1",
"name": "dependency1",
"version": "1.0.0"
},
{
"id": "2",
"name": "dependency2",
"version": "2.0.0"
}
]
}