A/B Testing API (1.0.0)
Download OpenAPI specification:Download
API powering the A/B Testing feature of Algolia.
Create a test
Creates a new A/B test with provided configuration. You can set an A/B test on two different indices with different settings, or on the same index with different search parameters by providing a customSearchParameters setting on one of the variants.
Authorizations:
Request Body schema: application/json
name required | string (name) A/B test name. |
required | Array of abTestsVariant (object) or abTestsVariantSearchParams (object) (AddABTestsVariant) = 2 items List of 2 variants for the A/B test. |
endAt required | string (endAt) End date for the A/B test expressed as YYYY-MM-DDThh:mm:ssZ. |
Responses
Request samples
- Payload
{- "name": "string",
- "variant": [
- {
- "index": "string",
- "trafficPercentage": 0,
- "description": "string"
}, - {
- "index": "string",
- "trafficPercentage": 0,
- "description": "string"
}
], - "endAt": "string"
}
Response samples
- 200
- 400
- 402
- 403
- 404
{- "index": "string",
- "abTestID": 0,
- "taskID": 0
}
List all tests
Fetch all existing A/B tests for App that are available for the current API Key. When no data has been processed, the metrics will be returned as null.
Authorizations:
query Parameters
offset | integer Default: 0 Position of the starting record. Used for paging. 0 is the first record. |
limit | integer Default: 10 Number of records to return. Limit is the size of the page. |
Responses
Response samples
- 200
- 400
- 402
- 403
- 404
{- "abtests": [
- {
- "abTestID": 0,
- "clickSignificance": 0,
- "conversionSignificance": 0,
- "endAt": "string",
- "updatedAt": "string",
- "createdAt": "string",
- "name": "string",
- "status": "string",
- "variants": [
- {
- "averageClickPosition": 0,
- "clickCount": 0,
- "clickThroughRate": 0,
- "conversionCount": 0,
- "conversionRate": 0,
- "description": "string",
- "index": "string",
- "noResultCount": 0,
- "searchCount": 0,
- "trackedSearchCount": 0,
- "trafficPercentage": 0,
- "userCount": 0
}
]
}
], - "count": 0,
- "total": 0
}
Get a test
Returns metadata and metrics for an A/B test.
Authorizations:
path Parameters
id required | integer The A/B test ID. |
Responses
Response samples
- 200
- 400
- 402
- 403
- 404
{- "abTestID": 0,
- "clickSignificance": 0,
- "conversionSignificance": 0,
- "endAt": "string",
- "updatedAt": "string",
- "createdAt": "string",
- "name": "string",
- "status": "string",
- "variants": [
- {
- "averageClickPosition": 0,
- "clickCount": 0,
- "clickThroughRate": 0,
- "conversionCount": 0,
- "conversionRate": 0,
- "description": "string",
- "index": "string",
- "noResultCount": 0,
- "searchCount": 0,
- "trackedSearchCount": 0,
- "trafficPercentage": 0,
- "userCount": 0
}
]
}
Stop a test
Marks the A/B test as stopped. At this point, the test is over and cannot be restarted. As a result, your application is back to normal: index A will perform as usual, receiving 100% of all search requests. Associated metadata and metrics are still stored.
Authorizations:
path Parameters
id required | integer The A/B test ID. |
Responses
Response samples
- 200
- 400
- 402
- 403
- 404
{- "index": "string",
- "abTestID": 0,
- "taskID": 0
}