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

idstring required

Script ID

namestring required

Script name

scriptstring required

Script content

created_atstring required

Script creation date

Example response

[
  {
    "id": "a0267f50-6e86-4088-8636-74e2c6a994bc",
    "name": "My startup script",
    "script": "#!/bin/bash\n\necho hello world",
    "created_at": "2026-06-12T10:30:00.000Z"
  }
]

Changes