Skip to main content
GET
/
folder
List Folders
curl --request GET \
  --url https://autonoma.app/api/folder \
  --header 'autonoma-client-id: <api-key>' \
  --header 'autonoma-client-secret: <api-key>'
[
  {
    "id": "cmbsgljfr00fd060153r9x8ek",
    "name": "Draft Folder",
    "created_at": "2025-06-11T21:25:47.559Z",
    "updated_at": "2025-06-11T21:25:47.559Z",
    "crontab": "0 0 * * *",
    "tests": [
      {
        "id": "cmbsgljfr00fd060153r9x8ek",
        "name": "New Test 2025-06-11T21:25:47.442Z"
      }
    ]
  }
]

Authorizations

autonoma-client-id
string
header
required

Client ID for authentication

autonoma-client-secret
string
header
required

Client secret for authentication

Query Parameters

limit
integer

Maximum number of folders to return

Required range: 1 <= x <= 100
Example:

20

offset
integer

Number of folders to skip for pagination

Required range: x >= 0
Example:

0

Response

List of Folders

id
string
Example:

"cmbsgljfr00fd060153r9x8ek"

name
string
Example:

"Draft Folder"

created_at
string<date-time>
Example:

"2025-06-11T21:25:47.559Z"

updated_at
string<date-time>
Example:

"2025-06-11T21:25:47.559Z"

crontab
string
Example:

"0 0 * * *"

tests
object[]
I