Skip to main content
GET
/
test_blueprint
/
list
List Tests
curl --request GET \
  --url https://api.docketqa.com/test_blueprint/list \
  --header 'X-API-KEY: <api-key>'
{
  "test_blueprints": [
    {
      "id": 123,
      "title": "<string>",
      "type": "<string>",
      "status": "<string>",
      "starting_url": "<string>",
      "step_count": 123,
      "test_blueprint_category_id": 123,
      "test_blueprint_category_name": "<string>",
      "last_run": "<string>",
      "last_status": "<string>",
      "company_id": 123,
      "created_by": 123,
      "browser_zoom": 123,
      "viewport_width": 123,
      "viewport_height": 123,
      "num_retries": 123,
      "files": [
        {}
      ],
      "variables": [
        {}
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}
Retrieve all test blueprints in your account.
test_blueprints
object[]
An array of test blueprint objects.

Example response

{
  "test_blueprints": [
    {
      "id": 446,
      "title": "Randomized Campaign Creation",
      "type": "integration",
      "status": "active",
      "starting_url": "https://app.example.com/",
      "step_count": 38,
      "test_blueprint_category_id": 26,
      "test_blueprint_category_name": "Campaigns",
      "last_run": "2025-10-10T21:05:19.847072+00:00",
      "last_status": "failed",
      "company_id": 3,
      "created_by": 5,
      "browser_zoom": 1.0,
      "viewport_width": 1900,
      "viewport_height": 1200,
      "num_retries": 0,
      "files": [],
      "variables": [],
      "created_at": "2025-10-07T00:53:44.522824+00:00",
      "updated_at": "2025-10-07T00:54:00.587872+00:00"
    }
  ]
}