latestOpenAPI 3.1.02026-08-23100133183.1 KB

0d66c7340876

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": "af213e46-fd16-4323-8981-ffbc812182b1",
    "name": "My startup script",
    "script": "#!/bin/bash\n\necho hello world",
    "created_at": "2026-06-12T10:30:00.000Z"
  }
]