---
title: "Get a specific Codeless test"
method: GET
path: "/v1/lab/{id}"
tags: ["Codeless tests"]
---

# Get a specific Codeless test

`GET /v1/lab/{id}`

Returns a single Codeless test's configuration: schedule, alerts, attached browsers, and timestamps. Use the steps endpoint to retrieve the actual test recording.

## Path parameters

- `id` integer, required

## Response `200`

Get a specific Codeless test

- TestingbotEntitiesLabTest — Testingbot_Entities_LabTest model
  - `id` integer, required — Unique numeric Codeless test ID.
  - `name` string, required — Test name.
  - `url` string, required — Target URL the test runs against.
  - `enabled` boolean, required — Whether scheduled runs are active.
  - `cron` string, required — Cron expression for scheduled runs; null if unscheduled.
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `last_run` string, date-time, required — Most recent run timestamp.
  - `alerts` TestingbotEntitiesLabAlert[], required — Configured alert destinations.
    - `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` TestingbotEntitiesBrowser[], required — Browsers this test is configured to run on.
    - `selenium_name` string, required — Capability value to send as `browserName` in WebDriver.
    - `name` string, required — Human-readable browser identifier (e.g. "firefox", "iexplore").
    - `version` integer, required — Major version number.
    - `long_version` string, required — Full version string (e.g. "121.0.6167.184").
    - `platform` string, required — Operating system (e.g. "WINDOWS", "MAC", "LINUX").
    - `browser_id` integer, required — Unique TestingBot browser ID used to attach browsers to Codeless tests.

## Other responses

- `401` — Authentication required
- `404` — Test 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/8f493cca8f92/schema)
