get_experiments
Retrieve experiments from the GrowthBook API with customizable parameters like limit, offset, and project for targeted data access.
Instructions
Fetches all experiments from the GrowthBook API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
project | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 100,
"type": "number"
},
"offset": {
"default": 0,
"type": "number"
},
"project": {
"type": "string"
}
},
"type": "object"
}