Jun 23, 2025
Retrieve timeseries of an A/B test
Retrieves timeseries for an A/B test by its ID.
Usage
Required ACL:
analytics
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.AbtestingV3;
var client = new AbtestingV3Client(
new AbtestingV3Config(
"ALGOLIA_APPLICATION_ID",
"ALGOLIA_API_KEY",
"ALGOLIA_APPLICATION_REGION"
)
);
var response = await client.GetTimeseriesAsync(42);
Did you find this page helpful?