Startup Scripts
Get startup scripts
get/v1/scripts
Query parameters
pagenumber
Page number, starting from 1
pageSizenumber
Number of items per page, default 10 maximum 100
namestring
Name filter. Startup scripts match by a partial name.
orderBy'created_at'
Field to sort by. Only created_at is supported.
orderDirection'asc' | 'desc'
Sort direction, either asc or desc.
Response
Returns a list of the project's startup scripts
Example response
[
{
"id": "7afd48fb-7dd1-416a-a6de-3545c28a829e",
"name": "My startup script",
"script": "#!/bin/bash\n\necho hello world",
"created_at": "2026-06-12T10:30:00.000Z"
}
]