---
title: "Get a specific Codeless suite"
method: GET
path: "/v1/labsuites/{id}"
tags: ["Codeless suites"]
---

# Get a specific Codeless suite

`GET /v1/labsuites/{id}`

Returns a single Codeless suite's configuration: schedule, alerts, attached browsers, and number of tests inside.

## Path parameters

- `id` integer, required

## Response `200`

Get a specific Codeless suite

- TestingbotEntitiesLabSuite — Testingbot_Entities_LabSuite model
  - `id` integer, required — Unique numeric Codeless suite ID.
  - `name` string, required — Suite name.
  - `enabled` boolean, required — Whether scheduled runs are active.
  - `cron` string, required — Cron expression for scheduled runs.
  - `test_count` integer, required — Number of Codeless tests attached.
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `last_run` string, date-time, required
  - `alerts` TestingbotEntitiesLabAlert[], required
    - `type` string, required — Alert channel (EMAIL, API, SMS).
    - `value` string, required — Channel value: email address, callback URL, or phone number.
    - `level` string, required — When to send (IMMEDIATELY, DAILY).
  - `browsers` TestingbotEntitiesLabBrowser[], required — Browsers the suite runs against. Only present on GET /v1/labsuites; the single-suite endpoint omits it.
    - `name` string, required — Browser identifier (e.g. "firefox", "chrome").
    - `version` string, required — Browser version the test runs against.
    - `os` string, required — Operating system the test runs on (e.g. "WINDOWS", "MAC", "LINUX").

## Other responses

- `401` — Authentication required
- `404` — Suite not found

---

[API](https://skmtc.net/testingbot/apis/testingbot-rest-api.md) · [All operations](https://skmtc.net/testingbot/apis/testingbot-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/testingbot/testingbot-rest-api/versions/eff607a49246/schema)
