API Test

View results

4 min

View results

Wait a few minutes for the test to provision and dispatch its first run. Once you see at least one successful run on the test dashboard, click it to drill into the run results.

API test result page showing the two-step Spotify transaction with response headers and request timing breakdown

The API test results page is laid out like a slimmed-down version of the Real Browser Test results — the same general anatomy, but without the screenshots, video, or web vitals (none of which apply, since no browser ran).

Result header

At the top: Status, Location, Timestamp, and Total duration. Notice how short the total duration is compared to the RBT — typically tens to hundreds of milliseconds for the whole multi-step transaction. That’s the cost-frequency advantage of API tests in action.

Request timeline

A horizontal bar for each request in the transaction, in execution order. Green is a successful step (any 2xx response that also satisfies your validation rules); red is a failure. The bar lengths are proportional to each request’s total duration, so you can spot which step in a chain is the slow one at a glance.

Request detail panes

Click any request in the timeline (or the list on the left) to open three tabs:

Request info — the timing breakdown

The right-hand sidebar is the single most useful diagnostic view in the page. For the selected request, it breaks the total duration down into its component phases:

Every one of these is also a time series you can chart, dashboard, and alert on. A typical production setup creates detectors on (a) overall run failure, (b) total run duration P95, and (c) the Wait time of any request whose backend SLO matters.

Where to go from here

Congratulations! You’ve built a complete multi-step API test from scratch, including an OAuth-authenticated business transaction. The same auth-then-action pattern — with whatever JSON extraction and validation rules your real backends need — covers the bulk of what teams use Splunk Synthetic Monitoring API Tests for in production.

Last Modified ·