List tests
gvt_list_testsList visibility tests for the authenticated user, newest first. Supports filtering by domain (optionally including subdomains), by URL (exact or contains match), by creation date range, by status, and by test type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | URL to filter tests by; matched per urlMode (contains by default). | |
| limit | No | Max results to return (default 10, max 100) | |
| domain | No | Domain to filter tests by, e.g. example.com. Subdomains are included unless includeSubdomains is false. | |
| offset | No | Number of records to skip before returning results (not a page number). Use offset=0 for the first page, offset=limit for the second page, etc. | |
| status | No | Test status to filter by: pending, processing, completed, or failed. | |
| urlMode | No | How the url filter matches: "exact" for full-URL equality, "contains" for substring match. | contains |
| testType | No | Test type to filter by: url, html, or html_paste. | |
| createdTo | No | Exclusive creation-date upper bound. YYYY-MM-DD (UTC midnight) or full ISO 8601 instant. | |
| createdFrom | No | Inclusive creation-date lower bound. YYYY-MM-DD (UTC midnight) or full ISO 8601 instant. | |
| sortDirection | No | Sort direction by creation date: desc (newest first, default) or asc (oldest first). | desc |
| includeSubdomains | No | If true (the default), includes tests for subdomains of the given domain. Set false to match the exact domain only. |