List all A/B tests

Lists all A/B tests you configured for this application.

Usage

Required ACL: analytics
1
2
3
4
5
6
7
8
9
from algoliasearch.abtesting_v3.client import AbtestingV3ClientSync
from json import loads

# In an asynchronous context, you can use AbtestingV3Client instead, which exposes the exact same methods.
client = AbtestingV3ClientSync(
    "ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION"
)

response = client.list_ab_tests()
Did you find this page helpful?