Applies to:
- Plan -
- Deployment -
Summary
Goal: Aggregate scores across multiple experiments in a single BTQL query. Features: BTQLexperiment() multi-ID source, SQL UNPIVOT, GET /v1/experiment API.
Configuration steps
Step 1: Retrieve experiment IDs
Get experiment IDs from the project using the experiments list endpoint:id field from each experiment object in the objects array.
Step 2: Query scores across experiments in a single BTQL call
Pass the collected IDs toexperiment(). The source accepts multiple IDs in one call.
FROM:, UNPIVOT:) is not preferred.
Step 3: Use per-experiment summarize as an alternative
If you need the summary shape per experiment rather than raw aggregation:Limitations
- No project-scoped BTQL source (e.g.,
project_experiments()) exists. Explicit experiment IDs are always required. - No single public endpoint returns the project-level experiment summary shown in the UI. That view is composed from per-experiment summaries internally.